aboutsummaryrefslogtreecommitdiff
path: root/test/compress/issue-1321.js
blob: e55696d012cea6cb5453125298bdf2a80fd7285b (about) (plain) 2020-07-19gnu: perl-gd: Update to 2.72 [fixes CVE-2019-6977]....* gnu/packages/gd.scm (perl-gd): Update to 2.72. Tobias Geerinckx-Rice #n11'>11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
issue_1321_no_debug: {
    mangle = {
        properties: {
            keep_quoted: true,
        },
    }
    input: {
        var x = {};
        x.foo = 1;
        x["a"] = 2 * x.foo;
        console.log(x.foo, x["a"]);
    }
    expect: {
        var x = {};
        x.x = 1;
        x["a"] = 2 * x.x;
        console.log(x.x, x["a"]);
    }
    expect_stdout: true
}

issue_1321_debug: {
    mangle = {
        properties: {
            debug: "",
            keep_quoted: true,
        },
    }
    input: {
        var x = {};
        x.foo = 1;
        x["_$foo$_"] = 2 * x.foo;
        console.log(x.foo, x["_$foo$_"]);
    }
    expect: {
        var x = {};
        x.x = 1;
        x["_$foo$_"] = 2 * x.x;
        console.log(x.x, x["_$foo$_"]);
    }
    expect_stdout: true
}

issue_1321_with_quoted: {
    mangle = {
        properties: {
            keep_quoted: false,
        },
    }
    input: {
        var x = {};
        x.foo = 1;
        x["a"] = 2 * x.foo;
        console.log(x.foo, x["a"]);
    }
    expect: {
        var x = {};
        x.x = 1;
        x["o"] = 2 * x.x;
        console.log(x.x, x["o"]);
    }
    expect_stdout: true
}