(strings, ...values)
| 6932 | } |
| 6933 | } |
| 6934 | function x(strings, ...values) { |
| 6935 | const str = join$1(strings); |
| 6936 | const comments = []; |
| 6937 | try { |
| 6938 | let expression2 = parseExpressionAt2(str, 0, acorn_opts(comments, str)); |
| 6939 | const match = /\S+/.exec(str.slice(expression2.end)); |
| 6940 | if (match) { |
| 6941 | throw new Error(`Unexpected token '${match[0]}'`); |
| 6942 | } |
| 6943 | expression2 = inject(str, expression2, values, comments); |
| 6944 | return expression2; |
| 6945 | } catch (err) { |
| 6946 | handle_error(str, err); |
| 6947 | } |
| 6948 | } |
| 6949 | function p(strings, ...values) { |
| 6950 | const str = `{${join$1(strings)}}`; |
| 6951 | const comments = []; |
no test coverage detected