(parser)
| 8085 | this.args = { target }; |
| 8086 | } |
| 8087 | static parse(parser) { |
| 8088 | if (!parser.matchToken("reset")) return; |
| 8089 | var target = null; |
| 8090 | if (!parser.commandBoundary(parser.currentToken())) { |
| 8091 | target = parser.requireElement("expression"); |
| 8092 | } |
| 8093 | return new _ResetCommand(target); |
| 8094 | } |
| 8095 | resolve(ctx, { target }) { |
| 8096 | var elt = target || ctx.me; |
| 8097 | ctx.meta.runtime.implicitLoop(elt, function(e) { |
nothing calls this directly
no test coverage detected