struct TopDown::Parser::Token(ValueType)
- TopDown::Parser::Token(ValueType)
- Struct
- Value
- Object
Defined in:
parser/tokens.crConstructors
Instance Method Summary
- #clone
- #copy_with(name _name = @name, value _value = @value, end_location _end_location = @end_location)
- #end_location : Location
-
#inspect(io)
Same as
#to_s
. - #name : Symbol
-
#to_s(io)
Display the token.
- #value : ValueType
Constructor Detail
Instance Method Detail
def copy_with(name _name = @name, value _value = @value, end_location _end_location = @end_location)
#
def to_s(io)
#
Display the token.
Token.new(:"+").to_s # => "[+]"
Token.new(:name, "foo").to_s # => "[name:foo]"