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