(parser, root)
| 5333 | this.args = { value: root }; |
| 5334 | } |
| 5335 | static parse(parser, root) { |
| 5336 | let stringPostfix = parser.matchAnyToken(...STRING_POSTFIXES) || parser.matchOpToken("%"); |
| 5337 | if (!stringPostfix) return; |
| 5338 | return new _StringPostfixExpression(root, stringPostfix.value); |
| 5339 | } |
| 5340 | resolve(context, { value: val }) { |
| 5341 | return "" + val + this.postfix; |
| 5342 | } |
nothing calls this directly
no test coverage detected