(ctx, { exprs })
| 5287 | return new _StyleLiteral(stringParts, exprs); |
| 5288 | } |
| 5289 | resolve(ctx, { exprs }) { |
| 5290 | var rv = ""; |
| 5291 | const stringParts = this.stringParts; |
| 5292 | stringParts.forEach(function(part, idx) { |
| 5293 | rv += part; |
| 5294 | if (idx in exprs) rv += exprs[idx]; |
| 5295 | }); |
| 5296 | return rv; |
| 5297 | } |
| 5298 | }; |
| 5299 | |
| 5300 | // src/parsetree/expressions/postfix.js |