(t rune)
| 38 | } |
| 39 | |
| 40 | func (p *parser) checkNext(t rune) { |
| 41 | p.check(t) |
| 42 | p.next() |
| 43 | } |
| 44 | |
| 45 | func (p *parser) checkNameAsExpression() exprDesc { return p.function.EncodeString(p.checkName()) } |
| 46 | func (p *parser) singleVariable() exprDesc { return p.function.SingleVariable(p.checkName()) } |
no test coverage detected