(context, { targetValue })
| 6158 | return defaultCmd; |
| 6159 | } |
| 6160 | resolve(context, { targetValue }) { |
| 6161 | if (targetValue != null && targetValue !== "") { |
| 6162 | return this.findNext(context); |
| 6163 | } else { |
| 6164 | return this.setter; |
| 6165 | } |
| 6166 | } |
| 6167 | }; |
| 6168 | var IncrementCommand = class _IncrementCommand extends Command { |
| 6169 | static keyword = "increment"; |