(context, { targetValue })
| 6517 | return defaultCmd; |
| 6518 | } |
| 6519 | resolve(context, { targetValue }) { |
| 6520 | if (targetValue != null && targetValue !== "") { |
| 6521 | return this.findNext(context); |
| 6522 | } else { |
| 6523 | return this.setter; |
| 6524 | } |
| 6525 | } |
| 6526 | }; |
| 6527 | var IncrementCommand = class _IncrementCommand extends Command { |
| 6528 | static keyword = "increment"; |