class GraphQL::Language::Token
- GraphQL::Language::Token
- Reference
- Object
Defined in:
graphql/language/token.crConstructors
Class Method Summary
Instance Method Summary
- #end_position : Int32
- #end_position=(end_position : Int32)
- #kind : Kind
- #kind=(kind : Kind)
- #start_position : Int32
- #start_position=(start_position : Int32)
- #value : String | Nil
- #value=(value : String | Nil)
Constructor Detail
def self.new(kind : GraphQL::Language::Token::Kind, value : Nil | String, start_position : Int32, end_position : Int32)
#