MCPcopy Create free account
hub / github.com/cel-expr/cel-go / Consume

Method Consume

parser/input.go:30–35  ·  view source on GitHub ↗

Consume implements (antlr.CharStream).Consume.

()

Source from the content-addressed store, hash-verified

28
29// Consume implements (antlr.CharStream).Consume.
30func (c *charStream) Consume() {
31 if c.pos >= c.buf.Len() {
32 panic("cannot consume EOF")
33 }
34 c.pos++
35}
36
37// LA implements (antlr.CharStream).LA.
38func (c *charStream) LA(offset int) int {

Callers 6

relationMethod · 0.45
calcMethod · 0.45
HelpMethod · 0.45
TypeIdMethod · 0.45
relationMethod · 0.45
calcMethod · 0.45

Calls 1

LenMethod · 0.65

Tested by

no test coverage detected