blob: 935c13d07d3dd0fabfd1164d4b3d6fe17b176ec4 [file] [log] [blame]
// Copyright (c) 2019, 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 'dart:developer';
import 'common/service_test_common.dart';
import 'common/test_helper.dart';
// AUTOGENERATED START
//
// Update these constants by running:
//
// dart pkg/vm_service/test/update_line_numbers.dart <test.dart>
//
const LINE_A = 24;
const LINE_B = 25;
const LINE_0 = 29;
const LINE_C = 30;
const LINE_D = 31;
const LINE_E = 32;
// AUTOGENERATED END
Future<void> helper() async {
print('helper'); // LINE_A.
return; // LINE_B.
}
Future<void> testMain() async {
debugger(); // LINE_0.
print('mmmmm'); // LINE_C.
await helper(); // LINE_D.
print('z'); // LINE_E.
}
final tests = <IsolateTest>[
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_0), // debugger
stepOver,
stoppedAtLine(LINE_C), // print mmmm
stepOver,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_D), // await helper
stepInto,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_A), // print.
stepOver,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_B), // return null.
stepInto, // exit helper via a single step.
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_D), // await helper
smartNext,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_E), // arrive after the await.
resumeIsolate,
];
void main([args = const <String>[]]) => runIsolateTests(
args,
tests,
'async_single_step_out_test.dart',
testeeConcurrent: testMain,
extraArgs: extraDebuggingArgs,
);