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