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

Unified Diff: tests/language_strong/cascade_2_test.dart

Issue 2996533003: Migrate language block 46 - canonical_const ... char_escape. (Closed)
Patch Set: Created 3 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/language_strong/cascade_2_test.dart
diff --git a/tests/language_strong/cascade_2_test.dart b/tests/language_strong/cascade_2_test.dart
deleted file mode 100644
index 1742f48f0fc5d95fc2a88a81225238b2adff2470..0000000000000000000000000000000000000000
--- a/tests/language_strong/cascade_2_test.dart
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright (c) 2012, 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.
-
-import "package:expect/expect.dart";
-
-// Test cascades, issues 7494 (vm), 7689 (dart2js).
-
-main() {
- var a = new Element(null);
- Expect.equals(1, a.path0.length);
- Expect.equals(a, a.path0[0]);
-
- // Issue 7693: e0 ? e1 : e2..f() parses as (e0 ? e1 : e2)..f().
- Expect.equals(2, a.path1.length);
- Expect.equals(a, a.path1[0]);
- Expect.equals(a, a.path1[1]);
-
- Expect.equals(1, a.path2.length); // NPE.
-
- var b = new Element(a);
- Expect.equals(2, b.path0.length);
- Expect.equals(a, b.path0[0]);
- Expect.equals(b, b.path0[1]);
-
- Expect.equals(3, b.path1.length);
- Expect.equals(a, b.path1[0]);
- Expect.equals(a, b.path1[1]);
- Expect.equals(b, b.path1[2]);
-
- Expect.equals(2, b.path2.length); // NPE.
-}
-
-class Element {
- final Element parent;
-
- Element(this.parent);
-
- List<Element> get path0 {
- if (parent == null) {
- return <Element>[this];
- } else {
- return parent.path0..add(this);
- }
- }
-
- List<Element> get path1 {
- return (parent == null) ? <Element>[this] : parent.path1
- ..add(this);
- }
-
- List<Element> get path2 {
- return (parent == null) ? <Element>[this] : (parent.path2..add(this));
- }
-}

Powered by Google App Engine
This is Rietveld 408576698