(label string, line int)
| 497 | } |
| 498 | |
| 499 | func (p *parser) labelStatement(label string, line int) { |
| 500 | p.function.CheckRepeatedLabel(label) |
| 501 | p.checkNext(tkDoubleColon) |
| 502 | l := p.function.MakeLabel(label, line) |
| 503 | p.skipEmptyStatements() |
| 504 | if p.blockFollow(false) { |
| 505 | p.activeLabels[l].activeVariableCount = p.function.block.activeVariableCount |
| 506 | } |
| 507 | p.function.FindGotos(l) |
| 508 | } |
| 509 | |
| 510 | func (p *parser) parameterList() { |
| 511 | n, isVarArg := 0, false |
no test coverage detected