issue979_reported: { options = { booleans: true, comparisons: true, conditionals: true, dead_code: true, evaluate: true, hoist_funs: true, if_return: true, join_vars: true, keep_fargs: true, loops: true, properties: true, sequences: true, side_effects: true, unused: true, } input: { function f1() { if (a == 1 || b == 2) { foo(); } } function f2() { if (!(a == 1 || b == 2)) { } else { foo(); } } } expect: { function f1() { 1!=a&&2!=b||foo(); } function f2() { 1!=a&&2!=b||foo(); } } } issue979_test_negated_is_best: { options = { booleans: true, comparisons: true, conditionals: true, dead_code: true, evaluate: true, hoist_funs: true, if_return: true, join_vars: true, keep_fargs: true, loops: true, properties: true, sequences: true, side_effects: true, unused: true, } input: { function f3() { if (a == 1 | b == 2) { foo(); } } function f4() { if (!(a == 1 | b == 2)) { } else { foo(); } } function f5() { if (a == 1 && b == 2) { foo(); } } function f6() { if (!(a == 1 && b == 2)) { } else { foo(); } } function f7() { if (a == 1 || b == 2) { foo(); } else { return bar(); } } } expect: { function f3() { 1==a|2==b&&foo(); } function f4() { 1==a|2==b&&foo(); } function f5() { 1==a&&2==b&&foo(); } function f6() { 1!=a||2!=b||foo(); } function f7() { if(1!=a&&2!=b)return bar();foo() } } } 62197ae60fa0bb34'>packages/wine.scm
AgeCommit message (Expand)Author
2021-01-29gnu: wine: Update to 6.0....* gnu/packages/wine.scm (wine): Update to 6.0. [inputs]: Add libusb. Remove glu, ncurses and zlib. Leo Prikler
2020-11-28gnu: wine: Improve formatting of some package definitions....* gnu/packages/wine.scm (wine, wine64)[arguments]: Fix formatting issues. Christopher Baines
2020-11-28gnu: wine64: Copy wine32 libraries....Fixes the linkage of binaries copied over from wine32. See also #42342. * gnu/packages/wine.scm (wine64)[#:phases]: Add copy-wine32-libraries. Signed-off-by: Christopher Baines <mail@cbaines.net> Leo Prikler
2020-11-28gnu: wine: Update to 5.21....* gnu/packages/wine.scm (wine): Update to 5.21. Signed-off-by: Christopher Baines <mail@cbaines.net> Leo Prikler
2020-07-25gnu: wine-staging: Update to 5.13....* gnu/packages/wine.scm (wine-staging-patchset-data): Update to 5.13. Tobias Geerinckx-Rice