Files
babel/packages/babel-generator/test/fixtures/edgecase/new-precedence/expected.js
Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

12 lines
184 B
JavaScript

new (a().b)();
new a().b();
new (a().b)();
new (a())();
new new a(a)();
new new a()(a);
new a().test;
new a().test;
new (a().test)();
new (a().b.c)();
new a().b.c();
new (a.b().c.d)();