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

Unified Diff: dart/compiler/javatests/com/google/dart/compiler/parser/SuperCalls.dart

Issue 20722006: Removed compiler/ directory from repository (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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: dart/compiler/javatests/com/google/dart/compiler/parser/SuperCalls.dart
diff --git a/dart/compiler/javatests/com/google/dart/compiler/parser/SuperCalls.dart b/dart/compiler/javatests/com/google/dart/compiler/parser/SuperCalls.dart
deleted file mode 100644
index d5f7fdfd36aa0b278c78d39d621d31efe83aa626..0000000000000000000000000000000000000000
--- a/dart/compiler/javatests/com/google/dart/compiler/parser/SuperCalls.dart
+++ /dev/null
@@ -1,29 +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 SuperCallSyntax {
- method() {
- super.foo();
- super.foo(1);
- super.foo(1, 2);
-
- super.foo().x;
- super.foo()[42];
- super.foo().x++;
-
- super.foo()();
- super.foo(1, 2)(3, 4);
-
- var v1 = super.foo();
- var v2 = super.foo(1);
- var v3 = super.foo(1, 2);
-
- var v4 = super.foo().x;
- var v5 = super.foo()[42];
- var v6 = super.foo().x++;
-
- var v7 = super.foo()();
- var v8 = super.foo(1, 2)(3, 4);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698