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

Unified Diff: compiler/javatests/com/google/dart/compiler/resolver/SuperMultipleInvocationsTest.dart

Issue 8527005: Better redirecting constructor and initializers problems reporting. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Report problems for all nodes Created 9 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
« no previous file with comments | « compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/javatests/com/google/dart/compiler/resolver/SuperMultipleInvocationsTest.dart
diff --git a/compiler/javatests/com/google/dart/compiler/resolver/SuperMultipleInvocationsTest.dart b/compiler/javatests/com/google/dart/compiler/resolver/SuperMultipleInvocationsTest.dart
deleted file mode 100644
index 86dd34b4ac921cc7a4fe6cbe85f4ada2a0b596f6..0000000000000000000000000000000000000000
--- a/compiler/javatests/com/google/dart/compiler/resolver/SuperMultipleInvocationsTest.dart
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright (c) 2011, 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.
-
-class A {
- int a;
- A(this.a);
- A.foo(int x, int y);
-}
-
-class B extends A {
- int b1;
- int b2;
- B(int x) : this.b1 = x, super(x), this.b2 = x, super.foo(x, x);
-}
« no previous file with comments | « compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698