module Dhall::Parser::Label
Public Instance Methods
value()
click to toggle source
# File lib/dhall/parser.rb, line 196 def value if first.string == "`" matches[1].string.extend(Quoted) else string.extend(Unquoted) end end