()
| 45 | func (p *parser) checkNameAsExpression() exprDesc { return p.function.EncodeString(p.checkName()) } |
| 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") |
no outgoing calls
no test coverage detected