(line int)
| 555 | } |
| 556 | |
| 557 | func (p *parser) functionStatement(line int) { |
| 558 | p.next() |
| 559 | v, m := p.functionName() |
| 560 | p.function.StoreVariable(v, p.body(m, line)) |
| 561 | p.function.FixLine(line) |
| 562 | } |
| 563 | |
| 564 | func (p *parser) localFunction() { |
| 565 | p.function.MakeLocalVariable(p.checkName()) |
no test coverage detected