Instance Propertygraphqlswift.graphql 3.0.0GraphQL
kind
The kind of Token.
AST.swift:69let kind: Kind
Other members in extension
Types
Type members
Instance members
let column: Int
The 1-indexed column number at which this Token begins.
var description: String
let end: Int
The character offset at which this Node ends.
let line: Int
The 1-indexed line number on which this Token appears.
var next: Token?
var prev: Token?
Tokens exist as nodes in a double-linked-list amongst all tokens including ignored tokens.
is always the first node and the last. let start: Int
The character offset at which this Node begins.
let value: String?
For non-punctuation tokens, represents the interpreted value of the token.