()
| 917 | return new _StringLiteral(stringToken, rawValue, args); |
| 918 | } |
| 919 | evalStatically() { |
| 920 | if (this.args === null) return this.rawValue; |
| 921 | return super.evalStatically(); |
| 922 | } |
| 923 | resolve(context, { parts } = {}) { |
| 924 | if (!parts || parts.length === 0) { |
| 925 | return this.rawValue; |
nothing calls this directly
no test coverage detected