As a follow up from #3145 we agreed to add a new format that is a superset of the compact format option. Do things that are considered dangerous. e.g. not printing semicolons, or print literal values as opposed to raw values.
9 lines
96 B
JavaScript
9 lines
96 B
JavaScript
new X();
|
|
new Y()();
|
|
new F().z;
|
|
|
|
new new x()();
|
|
new new x()(a);
|
|
new new x(a)();
|
|
new new x(a)(a);
|