aboutsummaryrefslogtreecommitdiff
path: root/test/compress/new.js
blob: 4b2c51c306b93c51a2e574ab5d2800f2efa1d537 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
new_statement: {
    input: {
        new x(1);
        new x(1)(2);
        new x(1)(2)(3);
        new new x(1);
        new new x(1)(2);
        new (new x(1))(2);
        (new new x(1))(2);
    }
    expect_exact: "new x(1);new x(1)(2);new x(1)(2)(3);new new x(1);new new x(1)(2);new new x(1)(2);(new new x(1))(2);"
}