class Dhall::Import::MissingImport

Public Class Methods

decode(*args) click to toggle source
# File lib/dhall/binary.rb, line 260
def self.decode(*args)
        new(*args)
end

Public Instance Methods

==(other)
Alias for: eql?
as_json() click to toggle source
# File lib/dhall/ast.rb, line 1680
def as_json
        []
end
canonical() click to toggle source
# File lib/dhall/ast.rb, line 1657
def canonical
        self
end
chain_onto(*) click to toggle source
# File lib/dhall/ast.rb, line 1653
def chain_onto(*)
        self
end
eql?(other) click to toggle source
# File lib/dhall/ast.rb, line 1675
def eql?(other)
        other.class == self.class
end
Also aliased as: ==
location() click to toggle source
# File lib/dhall/ast.rb, line 1671
def location
        Union.from(Location, "Missing", nil)
end
origin() click to toggle source
# File lib/dhall/ast.rb, line 1665
def origin; end
resolve(*) click to toggle source
# File lib/dhall/ast.rb, line 1661
def resolve(*)
        Promise.new.reject(ImportFailedException.new("missing"))
end
to_s() click to toggle source
# File lib/dhall/ast.rb, line 1667
def to_s
        "missing"
end