Index: dart/compiler/javatests/com/google/dart/compiler/parser/TryCatch.dart |
diff --git a/dart/compiler/javatests/com/google/dart/compiler/parser/TryCatch.dart b/dart/compiler/javatests/com/google/dart/compiler/parser/TryCatch.dart |
deleted file mode 100644 |
index 47087330ab3f7421f483ad7bcd4141dd38b3174b..0000000000000000000000000000000000000000 |
--- a/dart/compiler/javatests/com/google/dart/compiler/parser/TryCatch.dart |
+++ /dev/null |
@@ -1,46 +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 TestException1 { |
- int foo(); |
-} |
- |
-abstract class TestException2 { |
- int bar(); |
-} |
- |
-a() { |
- try { |
- } catch (e) { |
- } finally { |
- } |
-} |
- |
-b() { |
- try { |
- } catch (e) { |
- } |
-} |
- |
-c() { |
- try { |
- } finally { |
- } |
-} |
- |
-d() { |
- try { |
- } on TestException1 catch (e) { |
- } on TestException2 catch (e) { |
- } |
-} |
- |
-e() { |
- try { |
- } on TestException1 catch (e) { |
- } on TestException2 catch (e) { |
- } finally { |
- } |
-} |
- |