()
| 294 | } |
| 295 | |
| 296 | func (p *parser) statementList() { |
| 297 | for !p.blockFollow(true) { |
| 298 | if p.t == tkReturn { |
| 299 | p.statement() |
| 300 | return |
| 301 | } |
| 302 | p.statement() |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | func (p *parser) fieldSelector(e exprDesc) exprDesc { |
| 307 | e = p.function.ExpressionToAnyRegisterOrUpValue(e) |
no test coverage detected