remove_sequence: { options = { side_effects: true, } input: { (0, 1, eval)(); (0, 1, logThis)(); (0, 1, _decorators.logThis)(); } expect: { eval(); logThis(); (0, _decorators.logThis)(); } } remove_redundant_sequence_items: { options = { side_effects: true, } input: { "use strict"; (0, 1, eval)(); (0, 1, logThis)(); (0, 1, _decorators.logThis)(); } expect: { "use strict"; (0, eval)(); logThis(); (0, _decorators.logThis)(); } } dont_remove_this_binding_sequence: { options = { side_effects: true, } input: { "use strict"; (0, eval)(); (0, logThis)(); (0, _decorators.logThis)(); } expect: { "use strict"; (0, eval)(); logThis(); (0, _decorators.logThis)(); } } mized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/machine
AgeCommit message (Expand)Author
2021-02-25machine: ssh: Use 'formatted-message'....* gnu/machine/ssh.scm (machine-check-initrd-modules): Use 'formatted-message' instead of 'format' + '&message'. Ludovic Courtès