(parser)
| 8465 | this.args = { target }; |
| 8466 | } |
| 8467 | static parse(parser) { |
| 8468 | if (!parser.matchToken("blur")) return; |
| 8469 | var target = null; |
| 8470 | if (!parser.commandBoundary(parser.currentToken())) { |
| 8471 | target = parser.requireElement("expression"); |
| 8472 | } |
| 8473 | return new _BlurCommand(target); |
| 8474 | } |
| 8475 | resolve(ctx, { target }) { |
| 8476 | (target || ctx.me).blur(); |
| 8477 | return this.findNext(ctx); |
nothing calls this directly
no test coverage detected