enum KDL::Token::Type

Defined in:

kdl/tokenizer.cr

Enum Members

IDENT = 0
STRING = 1
RAWSTRING = 2
INTEGER = 3
DECIMAL = 4
FLOAT = 5
TRUE = 6
FALSE = 7
NULL = 8
WS = 9
NEWLINE = 10
LBRACE = 11
RBRACE = 12
LPAREN = 13
RPAREN = 14
EQUALS = 15
SEMICOLON = 16
EOF = 17
SLASHDASH = 18

Instance Method Summary

Instance methods inherited from struct Value

==(other : KDL::Value) ==

Instance methods inherited from class Object

===(other : KDL::Value) ===

Instance Method Detail

def decimal? #

[View source]
def eof? #

[View source]
def equals? #

[View source]
def false? #

[View source]
def float? #

[View source]
def ident? #

[View source]
def integer? #

[View source]
def lbrace? #

[View source]
def lparen? #

[View source]
def newline? #

[View source]
def null? #

[View source]
def rawstring? #

[View source]
def rbrace? #

[View source]
def rparen? #

[View source]
def semicolon? #

[View source]
def slashdash? #

[View source]
def string? #

[View source]
def true? #

[View source]
def ws? #

[View source]