Index: dart/compiler/javatests/com/google/dart/compiler/parser/FormalParameters.dart |
diff --git a/dart/compiler/javatests/com/google/dart/compiler/parser/FormalParameters.dart b/dart/compiler/javatests/com/google/dart/compiler/parser/FormalParameters.dart |
deleted file mode 100644 |
index c650b868c5d4bdd7eb5f3824563796ed4e9c1e38..0000000000000000000000000000000000000000 |
--- a/dart/compiler/javatests/com/google/dart/compiler/parser/FormalParameters.dart |
+++ /dev/null |
@@ -1,10 +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 FormalParameterSyntax { |
- a([x = 42]) { } |
- b([int x = 42]) { } |
- c(x, [y = 42]) { } |
- d(x, [int y = 42]) { } |
-} |