advance moves to the next token
()
| 276 | |
| 277 | // advance moves to the next token |
| 278 | func (p *ExpressionParser) advance() { |
| 279 | if p.pos < len(p.tokens) { |
| 280 | p.pos++ |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | // VisitExpressionTree walks through an expression tree and calls the visitor function |
| 285 | // for each ExpressionNode (literal expression) found in the tree |
no outgoing calls
no test coverage detected