(option)
| 5732 | } |
| 5733 | |
| 5734 | function parseTemplateElement(option) { |
| 5735 | var marker = markerCreate(), |
| 5736 | token = scanTemplateElement(option); |
| 5737 | if (strict && token.octal) { |
| 5738 | throwError(token, Messages.StrictOctalLiteral); |
| 5739 | } |
| 5740 | return markerApply(marker, delegate.createTemplateElement({ raw: token.value.raw, cooked: token.value.cooked }, token.tail)); |
| 5741 | } |
| 5742 | |
| 5743 | function parseTemplateLiteral() { |
| 5744 | var quasi, quasis, expressions, marker = markerCreate(); |
no test coverage detected