Skip to content

Commit

Permalink
Fix tests broken after 3cd9829
Browse files Browse the repository at this point in the history
  • Loading branch information
lautis committed Aug 16, 2011
1 parent a3c14f7 commit 8fff849
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/unit/compress/expected/empty-blocks.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
function mak(){for(;;);}function foo(){while(bar());}function bar(){return--x}var x=5
function bar(){return--x}function foo(){while(bar());}function mak(){for(;;);}var x=5
2 changes: 1 addition & 1 deletion test/unit/compress/expected/ifreturn2.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
function y(a){return typeof a=="object"?a:null}function x(a){return typeof a=="object"?a:a===42?0:a*2}
function x(a){return typeof a=="object"?a:a===42?0:a*2}function y(a){return typeof a=="object"?a:null}
2 changes: 1 addition & 1 deletion test/unit/compress/expected/issue68.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
function f(){function b(){}a||b()}
function f(){function b(){}if(a)return;b()}
2 changes: 1 addition & 1 deletion test/unit/compress/expected/with.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
with({})
with({});

0 comments on commit 8fff849

Please sign in to comment.