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

Unified Diff: tests/compiler/dart2js/js_backend_cps_ir_literals.dart

Issue 743973002: Add list literals in js cps codegen. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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/js_backend_cps_ir_literals.dart
diff --git a/tests/compiler/dart2js/js_backend_cps_ir_literals.dart b/tests/compiler/dart2js/js_backend_cps_ir_literals.dart
new file mode 100644
index 0000000000000000000000000000000000000000..514119a04491b609f25450a6d4293e44966e5a1f
--- /dev/null
+++ b/tests/compiler/dart2js/js_backend_cps_ir_literals.dart
@@ -0,0 +1,28 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// Tests of literals.
+
+library literals_tests;
+
+import 'js_backend_cps_ir_test.dart';
+
+const List<TestEntry> tests = const [
+ const TestEntry("""
+main() {
+ print([]);
+ print([1]);
+ print([1, 2]);
+ print([1, [1, 2]]);
+}
+""",
+"""
+function() {
+ P.print([]);
+ P.print([1]);
+ P.print([1, 2]);
+ P.print([1, [1, 2]]);
+ return null;
+}"""),
+];

Powered by Google App Engine
This is Rietveld 408576698