Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(849)

Unified Diff: node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js

Issue 800513006: Added vulcanize under third_party/npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js
diff --git a/node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js b/node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js
new file mode 100644
index 0000000000000000000000000000000000000000..ca17adbfd2dd15078bd8785ef4a15346670ca684
--- /dev/null
+++ b/node_modules/vulcanize/node_modules/uglify-js/test/compress/issue-105.js
@@ -0,0 +1,25 @@
+typeof_eq_undefined: {
+ options = {
+ comparisons: true
+ };
+ input: { a = typeof b.c != "undefined" }
+ expect: { a = "undefined" != typeof b.c }
+}
+
+typeof_eq_undefined_unsafe: {
+ options = {
+ comparisons: true,
+ unsafe: true
+ };
+ input: { a = typeof b.c != "undefined" }
+ expect: { a = void 0 !== b.c }
+}
+
+typeof_eq_undefined_unsafe2: {
+ options = {
+ comparisons: true,
+ unsafe: true
+ };
+ input: { a = "undefined" != typeof b.c }
+ expect: { a = void 0 !== b.c }
+}

Powered by Google App Engine
This is Rietveld 408576698