dart-sdk/tests/corelib/error_stack_trace1_test.dart
Lasse Reichstein Holst Nielsen 765c9c3a8e Make tests not assume catch(e) gives e type dynamic.
See #41558

Bug: http://dartbug.com/41558
Change-Id: I8980ad6e0d240c917f36ec4f9fcf2091fb61a4b7
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/143819
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Bob Nystrom <rnystrom@google.com>
2020-05-05 09:57:23 +00:00

41 lines
928 B
Dart

// 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 "package:expect/expect.dart";
class A {
static Aa() => Ab();
static Ab() => Ac();
static Ac() => throw "abc";
}
class B {
static Ba() => Bb();
static Bb() => Bc();
static Bc() {
try {
A.Aa();
} catch (e) {
// This should produce a NoSuchMethodError.
var trace = (e as dynamic).stackTrace;
}
}
}
main() {
bool hasThrown = false;
try {
B.Ba();
} catch (e, stackTrace) {
hasThrown = true;
var trace = stackTrace.toString();
print(trace);
Expect.isTrue(trace.contains("Bc"));
Expect.isTrue(trace.contains("Bb"));
Expect.isTrue(trace.contains("Ba"));
Expect.isTrue(trace.contains("main"));
}
Expect.isTrue(hasThrown);
}