9520235bfe
Running all existing tests with/without lazy async stacks ensures that
the existing functionality for --lazy-async-stacks does not regress.
There are still a few smaller things to be done in the debugger for lazy
async stacks.
This CL also ensures:
* The inner closure, i.e. AsyncClosure/AsyncGenClosure, is not
inlined if FLAG_lazy_async_stacks is on.
* Fixes a crash in dartkb mode, when the function of the Bytecode
object is null.
* Does a simple integration of the lazy async stacks in debugger.cc -
to ensure a stack is returned via vm-service.
Issue https://github.com/dart-lang/sdk/issues/37668
Change-Id: Ibc1e887a457e2c456ae65d9ed5fa92434f122a32
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/131825
Commit-Queue: Martin Kustermann <kustermann@google.com>
Reviewed-by: Ben Konyi <bkonyi@google.com>
36 lines
883 B
Dart
36 lines
883 B
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.
|
|
// VMOptions=--causal_async_stacks --no-lazy-async-stacks
|
|
// VMOptions=--no-causal_async_stacks --lazy-async-stacks
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
noop() async => Future.value(null);
|
|
|
|
baz() async {
|
|
// Throw exception after the first continuation, when there is no
|
|
// original stack trace.
|
|
await noop();
|
|
throw "Bad!";
|
|
}
|
|
|
|
bar() async {
|
|
await baz();
|
|
}
|
|
|
|
foo() async {
|
|
await bar();
|
|
}
|
|
|
|
main() async {
|
|
try {
|
|
await foo();
|
|
} catch (e, st) {
|
|
Expect.isTrue(st.toString().contains("baz"));
|
|
Expect.isTrue(st.toString().contains("bar"));
|
|
Expect.isTrue(st.toString().contains("foo"));
|
|
Expect.isTrue(st.toString().contains("main"));
|
|
}
|
|
}
|