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

Unified Diff: dart/compiler/javatests/com/google/dart/compiler/end2end/inc/my.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/end2end/inc/my.dart
diff --git a/dart/compiler/javatests/com/google/dart/compiler/end2end/inc/my.dart b/dart/compiler/javatests/com/google/dart/compiler/end2end/inc/my.dart
deleted file mode 100644
index f123883bc15feb13b9ca13b3a0d3bb4ab94e8554..0000000000000000000000000000000000000000
--- a/dart/compiler/javatests/com/google/dart/compiler/end2end/inc/my.dart
+++ /dev/null
@@ -1,63 +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.
-part of myApp;
-
-var x = 0, y = 1;
-void fn() { /* ... */ }
-
-class Spoo<T> {
- Spoo() { }
- Spoo.other() { }
-}
-
-main() {
- // Static method reference to Other0.
- var v = Other0.value();
-
- // Reference Other1 via new.
- var o1 = new Other1();
-
- // Static field reference to Other3.
- var f = Other3.field;
-
- // Reference SomeClass via new, and SomeClassImpl transitively.
- var sc = new SomeClass(1);
- var msg = sc.message;
-
- // Reference global var defined in myother0.dart
- var gv = globalVar;
-
- // Reference global function defined in myother0.dart
- var gf = globalFunction();
-}
-
-class Qualifiers extends QualifierBase {
- void fn() {
- // Qualified reference to Other5's field.
- var field = other5.field;
-
- // Qualified reference to Other6's method.
- var result = other6.method();
- }
-}
-
-// Reference Other2 by subclassing it.
-class Foo extends Other2 {
- foo() {
- // unqualified reference to superclass method.
- methodHole();
-
- // unqualified reference to superclass field.
- return hole;
- }
-
- int bar() {
- // qualified reference
- return super.not_hole.contents;
- }
-}
-
-// Reference Other4 using it as a type parameter bound.
-class Bar<T extends Other4> {
-}

Powered by Google App Engine
This is Rietveld 408576698