MCPcopy Create free account
hub / github.com/ForestHubAI/edge-agents / skipWhitespace

Method skipWhitespace

go/engine/expr/parser.go:32–36  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30}
31
32func (p *parser) skipWhitespace() {
33 for p.pos < len(p.input) && (p.input[p.pos] == ' ' || p.input[p.pos] == '\t') {
34 p.pos++
35 }
36}
37
38func (p *parser) peek() byte {
39 p.skipWhitespace()

Callers 3

peekMethod · 0.95
peekTwoMethod · 0.95
parseAtomMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected