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

Unified Diff: tests/compiler/dart2js/cps_ir/expected/basic_1.js

Issue 2246623002: Delete CPS IR (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 months 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: tests/compiler/dart2js/cps_ir/expected/basic_1.js
diff --git a/tests/compiler/dart2js/cps_ir/expected/basic_1.js b/tests/compiler/dart2js/cps_ir/expected/basic_1.js
deleted file mode 100644
index f8384d499460c844f154f20e33ba0fe641841d0d..0000000000000000000000000000000000000000
--- a/tests/compiler/dart2js/cps_ir/expected/basic_1.js
+++ /dev/null
@@ -1,27 +0,0 @@
-// Expectation for test:
-// main() {
-// var e = 1;
-// var l = [1, 2, 3];
-// var m = {'s': 1};
-//
-// print('(' ')');
-// print('(${true})');
-// print('(${1})');
-// print('(${[1, 2, 3]})');
-// print('(${{'s': 1}})');
-// print('($e)');
-// print('($l)');
-// print('($m)');
-// }
-
-function() {
- var l = [1, 2, 3], m = P.LinkedHashMap__makeLiteral(["s", 1]);
- P.print("()");
- P.print("(true)");
- P.print("(1)");
- P.print("(" + H.S([1, 2, 3]) + ")");
- P.print("(" + P.Maps_mapToString(P.LinkedHashMap__makeLiteral(["s", 1])) + ")");
- P.print("(1)");
- P.print("(" + H.S(l) + ")");
- P.print("(" + P.Maps_mapToString(m) + ")");
-}

Powered by Google App Engine
This is Rietveld 408576698