Index: dart/compiler/javatests/com/google/dart/compiler/type/class_with_methods.dart |
diff --git a/dart/compiler/javatests/com/google/dart/compiler/type/class_with_methods.dart b/dart/compiler/javatests/com/google/dart/compiler/type/class_with_methods.dart |
deleted file mode 100644 |
index 5f0f4249214ba9b8264c4b45552da10635938a84..0000000000000000000000000000000000000000 |
--- a/dart/compiler/javatests/com/google/dart/compiler/type/class_with_methods.dart |
+++ /dev/null |
@@ -1,17 +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. |
- |
-abstract class ClassWithMethods { |
- untypedNoArgumentMethod(); |
- untypedOneArgumentMethod(argument); |
- untypedTwoArgumentMethod(argument1, argument2); |
- |
- int intNoArgumentMethod(); |
- int intOneArgumentMethod(int argument); |
- int intTwoArgumentMethod(int argument1, int argument2); |
- |
- Function functionField; |
- var untypedField; |
- int intField; |
-} |