class Dhall::EmptyRecord
Public Instance Methods
as_json()
click to toggle source
# File lib/dhall/ast.rb, line 876 def as_json [8, {}] end
deep_merge(other)
click to toggle source
# File lib/dhall/ast.rb, line 864 def deep_merge(other) other end
each()
click to toggle source
# File lib/dhall/ast.rb, line 844 def each self end
fetch(k, default=nil, &block)
click to toggle source
# File lib/dhall/ast.rb, line 856 def fetch(k, default=nil, &block) {}.fetch(k, *default, &block) end
keys()
click to toggle source
# File lib/dhall/ast.rb, line 852 def keys [] end
map()
click to toggle source
# File lib/dhall/ast.rb, line 872 def map self end
merge(other)
click to toggle source
# File lib/dhall/ast.rb, line 868 def merge(other) other end
normalize()
click to toggle source
# File lib/dhall/normalize.rb, line 336 def normalize self end
slice(*)
click to toggle source
# File lib/dhall/ast.rb, line 860 def slice(*) self end
to_h()
click to toggle source
# File lib/dhall/ast.rb, line 848 def to_h {} end