()
| 589 | } |
| 590 | |
| 591 | func (self *_parser) parseIterationStatement() ast.Statement { |
| 592 | inIteration := self.scope.inIteration |
| 593 | self.scope.inIteration = true |
| 594 | defer func() { |
| 595 | self.scope.inIteration = inIteration |
| 596 | }() |
| 597 | self.scope.allowLet = false |
| 598 | return self.parseStatement() |
| 599 | } |
| 600 | |
| 601 | func (self *_parser) parseForIn(idx file.Idx, into ast.ForInto) *ast.ForInStatement { |
| 602 |
no test coverage detected