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