aboutsummaryrefslogtreecommitdiff
path: root/test/compress/issue-1202.js
blob: 27bc4248e1a05594def98a763c32020844d4013e (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
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
mangle_keep_fnames_false: {
    options = {
        keep_fnames : true,
        keep_fargs  : true,
    }
    mangle = {
        keep_fnames : false,
    }
    input: {
        "use strict";
        function total() {
            return function n(a, b, c) {
                return a + b + c;
            };
        }
    }
    expect: {
        "use strict";
        function total() {
            return function t(n, r, u) {
                return n + r + u;
            };
        }
    }
}

mangle_keep_fnames_true: {
    options = {
        keep_fnames : true,
        keep_fargs  : true,
    }
    mangle = {
        keep_fnames : true,
    }
    input: {
        "use strict";
        function total() {
            return function n(a, b, c) {
                return a + b + c;
            };
        }
    }
    expect: {
        "use strict";
        function total() {
            return function n(t, r, u) {
                return t + r + u;
            };
        }
    }
}
net> Attila Lendvai 2023-10-03gnu: trezord: Update to 2.0.33....* gnu/packages/finance.scm (trezord): Update to 2.0.33. [arguments]: Specify go-1.20 as the compiler. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Attila Lendvai 2023-10-03gnu: trezor-agent: Fix build, change versioning scheme....Clarify the versioning of the package in a comment, so that later updates will not pick the wrong version number. * gnu/packages/finance.scm (trezor-agent)[version]: Copy version from python-trezor-agent which effectively updates it from 0.14.4 to 0.14.7. [source]: Copy the origin also from python-trezor-agent to effectively sync the source and the version of the two packages; something that upstream will also do in future releases. Update snippet. [native-inputs]: Add missing python-bech32 and python-simple-rlp so that the test suite runs clean and the build finishes. [arguments]: Reenable 'sanity-check' phase. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Attila Lendvai 2023-10-03gnu: python-trezor-agent: Update to 0.14.7....* gnu/packages/finance.scm (python-trezor-agent): Update to 0.14.7. [native-inputs]: Add python-bech32 and python-cryptography. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Attila Lendvai 2023-10-03gnu: python-trezor: Update to 0.13.7....* gnu/packages/finance.scm (python-trezor): Update to 0.13.7. [propagated-inputs]: Drop python-click-7 kludge, add python-construct-classes instead of python-construct. [native-inputs]: Add python-pillow, python-simple-rlp and python-wheel. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Attila Lendvai 2023-09-28gnu: fulcrum: Update to 1.9.1....* gnu/packages/finance.scm (fulcrum): Use the upstream origin instead of the Flowee's fork of it, updates and expands the synopsis and description. Updates the package to 1.9.1 and build without any bundled libraries with the help of a patch. * gnu/packages/patches/fulcrum-1.9.1-unbundled-libraries.patch: New patch. * gnu/local.mk (dist_patch_DATA): Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Jean-Pierre De Jesus DIAZ 2023-09-22gnu: python-duniterpy: Update to 1.1.1....* gnu/packages/finance.scm (python-duniterpy): Update to 1.1.1. [build-system]: Switch to PYPROJECT-BUILD-SYSTEM. [arguments]: Add more tweaks for hard coded version ranges. [native-inputs]: Add PYTHON-POETRY-CORE. Marius Bakke 2023-09-04gnu: p2pool: Update to 3.6.2....* gnu/packages/finance.scm (p2pool): Update to 3.6.2. Guillaume Le Vaillant 2023-09-02gnu: electrum: Update to 4.4.6....* gnu/packages/finance.scm (electrum): Update to 4.4.6. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> fanquake 2023-07-30gnu: homebank: Update to 5.6.6....* gnu/packages/finance.scm (homebank): Update to 5.6.6. Tobias Geerinckx-Rice