(parser)
| 7172 | return repeatCommand; |
| 7173 | } |
| 7174 | static parse(parser) { |
| 7175 | if (parser.matchToken("for")) { |
| 7176 | return _RepeatCommand.parseRepeatExpression(parser, true); |
| 7177 | } |
| 7178 | if (parser.matchToken("repeat")) { |
| 7179 | return _RepeatCommand.parseRepeatExpression(parser, false); |
| 7180 | } |
| 7181 | } |
| 7182 | resolve(context, { value, event, on }) { |
| 7183 | var iteratorInfo = { |
| 7184 | index: 0, |
nothing calls this directly
no test coverage detected