module Dhall::Parser::NonEmptyRecordTypeOrLiteral

Public Instance Methods

value() click to toggle source
# File lib/dhall/parser.rb, line 436
def value
        key = [
                :non_empty_record_literal,
                :non_empty_record_type
        ].find { |k| captures.key?(k) }

        capture(key).value(capture(:any_label).value)
end