11b6bd85d6
Fixes tests with optimized builds: - language/stack_trace/full1_test - language/stack_trace/stack_trace_test language/stack_trace/demangle_ctors_test will be fixed once we fix #62523. Change-Id: I788500e67045fa63783cc316eaf010728d077a3b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/476100 Commit-Queue: Ömer Ağacan <omersa@google.com> Reviewed-by: Martin Kustermann <kustermann@google.com>
64 lines
1.5 KiB
Dart
64 lines
1.5 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).
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
class SomeClass {
|
|
@pragma("wasm:never-inline")
|
|
SomeClass.namedConstructor() {
|
|
throw new Exception();
|
|
}
|
|
|
|
@pragma("wasm:never-inline")
|
|
SomeClass() {
|
|
throw new Exception();
|
|
}
|
|
|
|
@pragma("wasm:never-inline")
|
|
factory SomeClass.useFactory() {
|
|
throw new Exception();
|
|
}
|
|
}
|
|
|
|
class OnlyHasFactory {
|
|
@pragma("wasm:never-inline")
|
|
factory OnlyHasFactory() {
|
|
throw new Exception();
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
try {
|
|
new SomeClass();
|
|
} on Exception catch (e, st) {
|
|
final stString = st.toString();
|
|
Expect.isTrue(stString.contains("new SomeClass"));
|
|
Expect.isFalse(stString.contains("SomeClass."));
|
|
}
|
|
|
|
try {
|
|
new SomeClass.namedConstructor();
|
|
} on Exception catch (e, st) {
|
|
final stString = st.toString();
|
|
Expect.isTrue(stString.contains("new SomeClass.namedConstructor"));
|
|
}
|
|
|
|
try {
|
|
new OnlyHasFactory();
|
|
} on Exception catch (e, st) {
|
|
final stString = st.toString();
|
|
Expect.isTrue(stString.contains("new OnlyHasFactory"));
|
|
Expect.isFalse(stString.contains("OnlyHasFactory."));
|
|
}
|
|
|
|
try {
|
|
new SomeClass.useFactory();
|
|
} on Exception catch (e, st) {
|
|
final stString = st.toString();
|
|
Expect.isTrue(stString.contains("new SomeClass.useFactory"));
|
|
}
|
|
}
|