RecordSelector has a record method as well
1 files changed, 1 insertions(+), 1 deletions(-) M lib/dhall/ast.rb
M lib/dhall/ast.rb => lib/dhall/ast.rb +1 -1
@@ 820,7 820,7 @@ module Dhall end def ==(other) - other.respond_to?(:record) && record.to_a == other.record.to_a + other.is_a?(Record) && record.to_a == other.record.to_a end def eql?(other)