Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
32
func
(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
38
func
(p *parser) peek() byte {
39
p.skipWhitespace()
Callers
3
peek
Method · 0.95
peekTwo
Method · 0.95
parseAtom
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected