~singpolyma/dhall-ruby

a897ddb1bfdbb5cb562f6a85d0d55571d071e463 — Stephen Paul Weber 10 months ago a33df80
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)