Files
sdk/tests/standalone/stack_trace/demangle_ctors_test.dart
Lasse Reichstein Holst Nielsen 58c86e254b Migrate tests to language/stack_trace.
Change-Id: I4f6ac937327a7e610976668377b9cccb03d89d9c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/146583
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Bob Nystrom <rnystrom@google.com>
2020-05-07 13:47:57 +00:00

61 lines
1.4 KiB
Dart

// Copyright (c) 2017, 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 stack traces are properly demangled in constructors (#28740).
// Regression test for http://dartbug.com/28740
import "package:expect/expect.dart";
class SomeClass {
SomeClass.namedConstructor() {
throw Exception();
}
SomeClass() {
throw Exception();
}
factory SomeClass.useFactory() {
throw Exception();
}
}
class OnlyHasFactory {
factory OnlyHasFactory() {
throw Exception();
}
}
void main() {
try {
SomeClass();
} on Exception catch (e, st) {
final stString = st.toString();
Expect.isTrue(stString.contains("new SomeClass"));
Expect.isFalse(stString.contains("SomeClass."));
}
try {
SomeClass.namedConstructor();
} on Exception catch (e, st) {
final stString = st.toString();
Expect.isTrue(stString.contains("new SomeClass.namedConstructor"));
}
try {
OnlyHasFactory();
} on Exception catch (e, st) {
final stString = st.toString();
Expect.isTrue(stString.contains("new OnlyHasFactory"));
Expect.isFalse(stString.contains("OnlyHasFactory."));
}
try {
SomeClass.useFactory();
} on Exception catch (e, st) {
final stString = st.toString();
Expect.isTrue(stString.contains("new SomeClass.useFactory"));
}
}