(parser)
| 8015 | this.args = { target }; |
| 8016 | } |
| 8017 | static parse(parser) { |
| 8018 | if (!parser.matchToken("blur")) return; |
| 8019 | var target = null; |
| 8020 | if (!parser.commandBoundary(parser.currentToken())) { |
| 8021 | target = parser.requireElement("expression"); |
| 8022 | } |
| 8023 | return new _BlurCommand(target); |
| 8024 | } |
| 8025 | resolve(ctx, { target }) { |
| 8026 | (target || ctx.me).blur(); |
| 8027 | return this.findNext(ctx); |
nothing calls this directly
no test coverage detected