diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compress.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compress.js b/lib/compress.js index fcfe95f7..7e55da5a 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -5114,8 +5114,8 @@ merge(Compressor.prototype, { var exit = make_node(self.body.CTOR, self, { value: make_node(AST_Conditional, self, { condition : self.condition, - consequent : self.body.value || make_node(AST_Undefined, self.body), - alternative : self.alternative.value || make_node(AST_Undefined, self.alternative) + consequent : self.body.value || make_node(AST_Undefined, self.body).transform(compressor), + alternative : self.alternative.value || make_node(AST_Undefined, self.alternative).transform(compressor) }) }); if (exit instanceof AST_Return) { |