MCPcopy Create free account
hub / github.com/araddon/qlbridge / LexTokenPager

Struct LexTokenPager

expr/parse.go:63–68  ·  view source on GitHub ↗

TokenPager is responsible for determining end of current tree (column, etc)

Source from the content-addressed store, hash-verified

61// TokenPager is responsible for determining end of
62// current tree (column, etc)
63type LexTokenPager struct {
64 done bool
65 tokens []lex.Token // list of all the tokens
66 cursor int
67 lex *lex.Lexer
68}
69
70func NewLexTokenPager(lex *lex.Lexer) *LexTokenPager {
71 p := LexTokenPager{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected