diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-10-24 16:31:37 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-10-24 16:31:37 -0700 |
commit | 4ca8aa815fdf170e89e556007698a776e282fd24 (patch) | |
tree | 117bdd547fb773aec33dba8c4537e9a3b4c5bbdd /tools/js-optimizer.js | |
parent | e7e425b05f8399157887b9fd0f04a1067ea37e8b (diff) |
note 'seq' (x,y,z) nodes as modifying control flow and invalidating elimination
Diffstat (limited to 'tools/js-optimizer.js')
-rw-r--r-- | tools/js-optimizer.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/js-optimizer.js b/tools/js-optimizer.js index c63f46d5..b84b2b7c 100644 --- a/tools/js-optimizer.js +++ b/tools/js-optimizer.js @@ -1408,7 +1408,8 @@ function eliminate(ast) { throw: true, call: true, label: true, - debugger: true + debugger: true, + seq: true }; var ANALYZE_BLOCK_TYPES = { |