issue_1639_1: { options = { booleans: true, collapse_vars: true, conditionals: true, evaluate: true, join_vars: true, loops: true, sequences: true, side_effects: true, } input: { var a = 100, b = 10; var L1 = 5; while (--L1 > 0) { if ((--b), false) { if (b) { var ignore = 0; } } } console.log(a, b); } expect: { for (var a = 100, b = 10, L1 = 5; --L1 > 0;) if (--b, 0) var ignore = 0; console.log(a, b); } expect_stdout: true } issue_1639_2: { options = { booleans: true, collapse_vars: true, conditionals: true, evaluate: true, join_vars: true, sequences: true, side_effects: true, } input: { var a = 100, b = 10; function f19() { if (++a, false) if (a) if (++a); } f19(); console.log(a, b); } expect: { var a = 100, b = 10; function f19() { ++a, 0; } f19(), console.log(a, b); } expect_stdout: true } issue_1639_3: { options = { booleans: true, collapse_vars: true, conditionals: true, evaluate: true, sequences: true, side_effects: true, } input: { var a = 100, b = 10; a++ && false && a ? 0 : 0; console.log(a, b); } expect: { var a = 100, b = 10; a++, console.log(a, b); } expect_stdout: true } lue='committer'>committer
path: root/TODO
AgeCommit message (Expand)Author
2019-01-21Update 'TODO'...* TODO (Installer): Add Pierre Neidhardt suggestions described here: https://lists.gnu.org/archive/html/guix-devel/2019-01/msg00305.html Mathieu Othacehe
2019-01-17Update 'TODO'....* TODO (Installer): New section. Mathieu Othacehe
2016-09-01Update 'TODO'....* TODO: Remove items about guix challenge & guix publish. Signed-off-by: Vincent Legoll <vincent.legoll@gmail.com> Signed-off-by: Ludovic Courtès <ludo@gnu.org> Vincent Legoll
2014-09-16Remove outdated items from 'TODO'.Ludovic Courtès
2014-04-29Update 'TODO'.Ludovic Courtès
2013-12-22Update 'TODO'.Ludovic Courtès
2013-12-20Update 'TODO'.Ludovic Courtès
2013-10-09Update 'TODO'.Ludovic Courtès
2013-10-06Augment 'TODO'.Ludovic Courtès
2013-08-23Add TODO item.Ludovic Courtès
2013-07-19Update `TODO'.Ludovic Courtès
2013-07-03Update `NEWS' and `TODO'.Ludovic Courtès
2013-06-14Update `TODO'.Ludovic Courtès
2013-05-17Update `TODO'.Ludovic Courtès
2013-05-10Update `TODO'.Ludovic Courtès
2013-04-12Update `TODO'.Ludovic Courtès
2013-03-27Update `TODO'.Ludovic Courtès
2013-02-17Update `TODO'.Mark H Weaver