module Dhall::Parser::Builtin

Public Instance Methods

value() click to toggle source
# File lib/dhall/parser.rb, line 382
def value
        return Dhall::Bool.new(value: true) if string == "True"
        return Dhall::Bool.new(value: false) if string == "False"

        Dhall::Builtins[string.to_sym]
end