()
| 491 | } |
| 492 | |
| 493 | func (p *parser) skipEmptyStatements() { |
| 494 | for p.t == ';' || p.t == tkDoubleColon { |
| 495 | p.statement() |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | func (p *parser) labelStatement(label string, line int) { |
| 500 | p.function.CheckRepeatedLabel(label) |
no test coverage detected