* Unify parens printing for postfix exprs: (), [...], ! * Also move template tags handling * Add tagged template test * isPostfixExpression -> hasPostfixPart
6 lines
88 B
JavaScript
6 lines
88 B
JavaScript
async function test() {
|
|
(function (e) {
|
|
throw e;
|
|
})(new Error(await 'test'));
|
|
}
|