diff options
author | Michael Ficarra <mficarra@groupon.com> | 2013-04-20 15:11:05 -0500 |
---|---|---|
committer | Michael Ficarra <mficarra@groupon.com> | 2013-04-20 15:11:05 -0500 |
commit | 5af144522a6fea302abdd0b63d48864de0664207 (patch) | |
tree | 69291fff13832734c4752f49276f5dcb69a59b94 /lib/compress.js | |
parent | 4b818056cf1a19fe6251e026cac4894f618f0217 (diff) | |
download | tracifyjs-5af144522a6fea302abdd0b63d48864de0664207.tar.gz tracifyjs-5af144522a6fea302abdd0b63d48864de0664207.zip |
fixes #189: use dotted member access when --screw-ie8 option given
Diffstat (limited to 'lib/compress.js')
-rw-r--r-- | lib/compress.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compress.js b/lib/compress.js index 216826d6..ebd3dd7a 100644 --- a/lib/compress.js +++ b/lib/compress.js @@ -66,6 +66,7 @@ function Compressor(options, false_by_default) { join_vars : !false_by_default, cascade : !false_by_default, side_effects : !false_by_default, + screw_ie8 : false, warnings : true, global_defs : {} @@ -1961,7 +1962,7 @@ merge(Compressor.prototype, { var prop = self.property; if (prop instanceof AST_String && compressor.option("properties")) { prop = prop.getValue(); - if (is_identifier(prop)) { + if (is_identifier(prop) || compressor.option("screw_ie8")) { return make_node(AST_Dot, self, { expression : self.expression, property : prop |