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? #

def at? #

def bang? #

def block_string? #

def brace_l? #

def brace_r? #

def bracket_l? #

def bracket_r? #

def colon? #

def comment? #

def dollar? #

def eof? #

def equals? #

def float? #

def int? #

def name? #

def paren_l? #

def paren_r? #

def pipe? #

def spread? #

def string? #