MCPcopy Create free account
hub / github.com/AfterShip/clickhouse-sql-parser / lastTokenKind

Method lastTokenKind

parser/parser_common.go:19–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17}
18
19func (p *Parser) lastTokenKind() TokenKind {
20 if p.last() == nil {
21 return TokenKindEOF
22 }
23 return p.last().Kind
24}
25
26func (p *Parser) last() *Token {
27 return p.lexer.lastToken

Callers 15

parseInfixMethod · 0.95
parseColumnExprMethod · 0.95
parseColumnCastExprMethod · 0.95
parseSelectItemMethod · 0.95
parseColumnTypeArgsMethod · 0.95
parseJSONOptionMethod · 0.95
parseNestedTypeFieldsMethod · 0.95
tryParseRefreshExprMethod · 0.95

Calls 1

lastMethod · 0.95

Tested by

no test coverage detected