~singpolyma/dhall-ruby

db074ab43680f519377ffca64974498af9d76b77 — Stephen Paul Weber 4 years ago ea63524
Update to fixed tests
2 files changed, 7 insertions(+), 1 deletions(-)

M dhall-lang
M lib/dhall/normalize.rb
M dhall-lang => dhall-lang +1 -1
@@ 1,1 1,1 @@
Subproject commit 07aa048ee5f5705c020172e0b74f7b929b2303da
Subproject commit 3cff3fbc8d1c2c7c0397bbb9072ee8f47cc34dcc

M lib/dhall/normalize.rb => lib/dhall/normalize.rb +6 -0
@@ 187,9 187,15 @@ module Dhall
	end

	class Optional
		def normalize
			with(value: value.normalize, type: nil)
		end
	end

	class OptionalNone
		def normalize
			with(type: type.normalize)
		end
	end

	class Merge