aboutsummaryrefslogtreecommitdiff
path: root/lib/compress.js
diff options
context:
space:
mode:
authorMihai Bazon <mihai@bazon.net>2012-10-24 09:33:32 +0300
committerMihai Bazon <mihai@bazon.net>2012-10-24 09:33:32 +0300
commit70fd2b1f336535188696d9e7b198b8acd31aa558 (patch)
tree4279039cd90f45e8840198449efcc715cc8a9f90 /lib/compress.js
parent30faaf13edca3a4db6867e8faf0f0b68c6ac11e0 (diff)
downloadtracifyjs-70fd2b1f336535188696d9e7b198b8acd31aa558.tar.gz
tracifyjs-70fd2b1f336535188696d9e7b198b8acd31aa558.zip
fix for `if (...) return; else return ...;`
(it was assumed that the first `return` always contains a value) close #22
Diffstat (limited to 'lib/compress.js')
-rw-r--r--lib/compress.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compress.js b/lib/compress.js
index 22fb330e..2ea91d0c 100644
--- a/lib/compress.js
+++ b/lib/compress.js
@@ -1220,8 +1220,8 @@ merge(Compressor.prototype, {
return make_node(self.body.CTOR, self, {
value: make_node(AST_Conditional, self, {
condition : self.condition,
- consequent : self.body.value,
- alternative : self.alternative.value || make_node(AST_Undefined, self).optimize(compressor)
+ consequent : self.body.value || make_node(AST_Undefined, self.body).optimize(compressor),
+ alternative : self.alternative.value || make_node(AST_Undefined, self.alternative).optimize(compressor)
})
}).transform(compressor);
}