()
| 46 | func (p *parser) singleVariable() exprDesc { return p.function.SingleVariable(p.checkName()) } |
| 47 | func (p *parser) leaveLevel() { p.l.nestedGoCallCount-- } |
| 48 | func (p *parser) enterLevel() { |
| 49 | p.l.nestedGoCallCount++ |
| 50 | p.checkLimit(p.l.nestedGoCallCount, maxCallCount, "Go levels") |
| 51 | } |
| 52 | |
| 53 | func (p *parser) expressionList() (e exprDesc, n int) { |
| 54 | for n, e = 1, p.expression(); p.testNext(','); n, e = n+1, p.expression() { |
no test coverage detected