aboutsummaryrefslogtreecommitdiff
path: root/test/compress/properties.js
blob: 72e245ec06d61d496cb00e2a5f60a9016bae0848 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
keep_properties: {
    options = {
        properties: false
    };
    input: {
        a["foo"] = "bar";
    }
    expect: {
        a["foo"] = "bar";
    }
}

dot_properties: {
    options = {
        properties: true
    };
    input: {
        a["foo"] = "bar";
        a["if"] = "if";
    }
    expect: {
        a.foo = "bar";
        a["if"] = "if";
    }
}