Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | var x = "one"; |
michael@0 | 2 | var y = "two"; |
michael@0 | 3 | const a = x + y; |
michael@0 | 4 | var hit = false; |
michael@0 | 5 | eval('switch("onetwo") { case a: hit = true; };'); |
michael@0 | 6 | assertEq(hit, true); |