package lexer
import "github.com/vektah/gqlparser/v2/lexer"
Index ¶
Types ¶
type Lexer ¶
Lexer turns graphql request and schema strings into tokens
func New ¶
func (*Lexer) ReadToken ¶
ReadToken gets the next token from the source starting at the given position.
This skips over whitespace and comments until it finds the next lexable token, then lexes punctuators immediately or calls the appropriate helper function for more complicated tokens.
type Token ¶
type Token struct { Kind Type // The token type. Value string // The literal value consumed. Pos ast.Position // The file and line this token was read from }
func (Token) String ¶
type Type ¶
type Type int
Kind represents a type of token. The types are predefined as constants.
const ( Invalid Type = iota EOF Bang Dollar Amp ParenL ParenR Spread Colon Equals At BracketL BracketR BraceL BraceR Pipe Name Int Float String BlockString Comment )
func (Type) Name ¶
func (Type) String ¶
Source Files ¶
blockstring.go lexer.go token.go
- Version
- v2.5.23 (latest)
- Published
- Feb 27, 2025
- Platform
- linux/amd64
- Imports
- 7 packages
- Last checked
- 2 weeks ago –
Tools for package owners.