~singpolyma/dhall-ruby

a74eba659135a126b12fa3e340a8008568625aa3 — Stephen Paul Weber 4 years ago fdeac21
Optional#value is not what we want here
1 files changed, 1 insertions(+), 1 deletions(-)

M lib/dhall/ast.rb
M lib/dhall/ast.rb => lib/dhall/ast.rb +1 -1
@@ 732,7 732,7 @@ module Dhall
			else
				Application.new(
					function: selection_syntax,
					argument: value.respond_to?(:value) ? value.value : value
					argument: value.is_a?(TypeAnnotation) ? value.value : value
				)
			end
		end