aboutsummaryrefslogtreecommitdiff
path: root/test/compress/issue-597.js
blob: f243223a7d6772009208c4b3788f4bc96eea2921 (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
NaN_and_Infinity_must_have_parens: {
    options = {};
    input: {
        Infinity.toString();
        NaN.toString();
    }
    expect: {
        (1/0).toString();
        NaN.toString();         // transformation to 0/0 dropped
    }
}

NaN_and_Infinity_should_not_be_replaced_when_they_are_redefined: {
    options = {};
    input: {
        var Infinity, NaN;
        Infinity.toString();
        NaN.toString();
    }
    expect: {
        var Infinity, NaN;
        Infinity.toString();
        NaN.toString();
    }
}
0:30:36 +0200'>2019-12-16gnu: bison: Update to 3.5....* gnu/packages/bison.scm (bison): Update to 3.5. Efraim Flashner 2019-11-26gnu: bison: Update to 3.4.2....* gnu/packages/bison.scm (bison): Update to 3.4.2. Efraim Flashner 2019-09-30gnu: xyce: Use Bison 3.0....Xyce requires Bison 3.0 at the latest. * gnu/packages/bison.scm (bison-3.0): New variable. * gnu/packages/engineering.scm (xyce-serial)[native-inputs]: Use BISON-3.0 instead of BISON. Ludovic Courtès 2019-06-17gnu: bison: Disable parallel tests, too....* gnu/packages/bison.scm (bison)[arguments]: Add #:parallel-tests?. Marius Bakke 2019-06-16gnu: bison: Disable parallel build....Fixes <https://bugs.gnu.org/36238. Reported by Carl Dong <contact@carldong.me>. * gnu/packages/bison.scm (bison)[arguments]: New field. Marius Bakke 2019-05-25gnu: bison: Update to 3.4.1....* gnu/packages/bison.scm (bison): Update to 3.4.1. Marius Bakke 2019-02-07gnu: bison: Update to 3.3.2....* gnu/packages/bison.scm (bison): Update to 3.3.2. Marius Bakke 2019-01-07gnu: bison: Update to 3.2.4....* gnu/packages/bison.scm (bison): Update to 3.2.4. Efraim Flashner 2018-12-11gnu: bison: Update to 3.2.2....* gnu/packages/bison.scm (bison): Update to 3.2.2. Marius Bakke 2018-08-25gnu: Remove bison@2.7....* gnu/packages/bison.scm (bison-2.7): Remove variable. Marius Bakke 2018-06-12gnu: bison: Update to 3.0.5....* gnu/packages/bison.scm (bison): Update to 3.0.5. Tobias Geerinckx-Rice