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

Unified Diff: runtime/tests/vm/dart/error_stacktrace_test.dart

Issue 38343004: - Don't mix the collection of Error.stackTrace with the collection of (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 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
« no previous file with comments | « no previous file | runtime/vm/exceptions.cc » ('j') | runtime/vm/exceptions.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/tests/vm/dart/error_stacktrace_test.dart
===================================================================
--- runtime/tests/vm/dart/error_stacktrace_test.dart (revision 0)
+++ runtime/tests/vm/dart/error_stacktrace_test.dart (revision 0)
@@ -0,0 +1,31 @@
+// 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.
+// Test that the full stacktrace in an error object matches the stacktrace
+// handed to the catch clause.
+library test.error_stacktrace;
+
+import "package:expect/expect.dart";
+
+class C {
+ // operator*(o) is missing to trigger a noSuchMethodError when a C object
+ // is used in the multiplication below.
+}
+
+bar(c) => c * 4;
+foo(c) => bar(c);
+
+main() {
+ try {
+ var a = foo(new C());
+ } catch (e, s) {
+ print(e);
+ print("###");
+ print(e.stackTrace);
+ print("###");
+ print(s);
+ print("###");
+ Expect.isTrue(e is NoSuchMethodError);
+ Expect.stringEquals(e.stackTrace.toString(), s.toString());
+ }
+}
« no previous file with comments | « no previous file | runtime/vm/exceptions.cc » ('j') | runtime/vm/exceptions.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698