Chromium Code Reviews| Index: tests/language/cascade_2_test.dart |
| =================================================================== |
| --- tests/language/cascade_2_test.dart (revision 0) |
| +++ tests/language/cascade_2_test.dart (revision 0) |
| @@ -0,0 +1,40 @@ |
| +// 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. |
| + |
| +// Test cascades, issue 7665. |
| + |
| +main() { |
| + var a = new Element(null); |
| + Expect.equals(1, a.path0.length); |
| + Expect.equals(1, a.path1.length); // 2 instead of 1 |
| + Expect.equals(1, a.path2.length); // NPE. |
|
Ivan Posva
2013/01/04 01:29:55
It would be nice if you checked that the result is
srdjan
2013/01/04 01:34:08
Done.
|
| + |
| + var b = new Element(a); |
| + Expect.equals(2, b.path0.length); |
| + Expect.equals(2, b.path1.length); // 3 instead of 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)); |
| + } |
| +} |