enum GraphQL::Language::Token::Kind

Defined in:

graphql/language/token.cr

Enum Members

BANG = 0
DOLLAR = 1
PAREN_L = 2
PAREN_R = 3
SPREAD = 4
COLON = 5
EQUALS = 6
AT = 7
BRACKET_L = 8
BRACKET_R = 9
BRACE_L = 10
PIPE = 11
BRACE_R = 12
NAME = 13
INT = 14
FLOAT = 15
STRING = 16
BLOCK_STRING = 17
COMMENT = 18
AMP = 19
EOF = 20

Instance Method Summary

Instance Method Detail

def amp? #

[View source]
def at? #

[View source]
def bang? #

[View source]
def block_string? #

[View source]
def brace_l? #

[View source]
def brace_r? #

[View source]
def bracket_l? #

[View source]
def bracket_r? #

[View source]
def colon? #

[View source]
def comment? #

[View source]
def dollar? #

[View source]
def eof? #

[View source]
def equals? #

[View source]
def float? #

[View source]
def int? #

[View source]
def name? #

[View source]
def paren_l? #

[View source]
def paren_r? #

[View source]
def pipe? #

[View source]
def spread? #

[View source]
def string? #

[View source]