MCPcopy Create free account
hub / github.com/donatj/sqlread / selectIntpState

Method selectIntpState

interpreter.go:136–148  ·  view source on GitHub ↗
(l *lexer)

Source from the content-addressed store, hash-verified

134}
135
136func (intp *Intp) selectIntpState(l *lexer) state {
137 l.start = l.pos
138 l.pos += 6
139
140 l.emit(TIntpSelect)
141
142 if l.accept(whitespace) < 1 {
143 l.emit(TIllegal)
144 return nil
145 }
146
147 return intp.selectIdentifierIntpState
148}
149
150func (intp *Intp) selectIdentifierIntpState(l *lexer) state {
151 l.accept(whitespace)

Callers

nothing calls this directly

Calls 2

emitMethod · 0.80
acceptMethod · 0.80

Tested by

no test coverage detected