(type, value)
| 435 | if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me); |
| 436 | } |
| 437 | function quasi(type, value) { |
| 438 | if (type != "quasi") return pass(); |
| 439 | if (value.slice(value.length - 2) != "${") return cont(quasi); |
| 440 | return cont(expression, continueQuasi); |
| 441 | } |
| 442 | function continueQuasi(type) { |
| 443 | if (type == "}") { |
| 444 | cx.marked = "string-2"; |