Index: tests/standalone/debugger/tostring_throws_test.dart |
diff --git a/tests/standalone/debugger/tostring_throws_test.dart b/tests/standalone/debugger/tostring_throws_test.dart |
deleted file mode 100644 |
index 7214bb2e20f2d31d236462354824b5c971fa9f1d..0000000000000000000000000000000000000000 |
--- a/tests/standalone/debugger/tostring_throws_test.dart |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
-// Copyright (c) 2013, 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. |
- |
-import "debug_lib.dart"; |
- |
-main(List<String> arguments) { |
- if (RunScript(testScript, arguments)) return; |
- |
- Foo foo = new Foo(); |
- |
- print("Hello from debuggee"); |
-} |
- |
-class Foo { |
- String toString() { |
- throw 'I always throw'; |
- } |
-} |
- |
-// Make sure Foo.toString() does not get called. |
-var testScript = [ |
- MatchFrame(0, "main"), |
- SetBreakpoint(12), |
- Resume(), |
- MatchFrame(0, "main"), |
- MatchLocals({"foo": "object of type Foo"}), |
- Resume(), |
-]; |