module Dhall::Parser::ImportHashed

Public Instance Methods

value(import_type) click to toggle source
# File lib/dhall/parser.rb, line 516
def value(import_type)
        integrity_check = capture(:hash)&.value
        path = capture(:import_type).value
        Dhall::Import.new(integrity_check, import_type, path)
end