enum Mu::TokenType

Defined in:

parser.cr

Enum Members

Identifier = 0
ParenLeft = 1
ParenRight = 2
Comma = 3
NumberLiteral = 4
StringLiteral = 5
HashComment = 6
LineComment = 7
EOL = 8
EOF = 9

Instance Method Summary

Instance Method Detail

def comma? #

[View source]
def eof? #

[View source]
def eol? #

[View source]
def hash_comment? #

[View source]
def identifier? #

[View source]
def line_comment? #

[View source]
def number_literal? #

[View source]
def paren_left? #

[View source]
def paren_right? #

[View source]
def string_literal? #

[View source]