blob: 1e21ab8d572a6b4e53ac07f3ac29e93c1ecf8c25 [file] [log] [blame]
// Copyright (c) 2023, 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 'package:vm_service/vm_service.dart';
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 = 25;
const LINE_B = 28;
// AUTOGENERATED END
Stream<int> generator() async* {
final x = 3;
final y = 4;
debugger(); // LINE_A
yield y;
final z = x + y;
debugger(); // LINE_B
yield z;
}
Future<void> testFunction() async {
await for (var _ in generator()) {}
}
final tests = <IsolateTest>[
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_A),
(VmService service, IsolateRef isolateRef) async {
final isolateId = isolateRef.id!;
await evaluateInFrameAndExpect(service, isolateId, 'x', '3');
},
resumeIsolate,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_B),
(VmService service, IsolateRef isolateRef) async {
final isolateId = isolateRef.id!;
await evaluateInFrameAndExpect(service, isolateId, 'z', '7');
},
resumeIsolate,
];
void main([args = const <String>[]]) => runIsolateTests(
args,
tests,
'evaluate_in_async_star_activation_test.dart',
testeeConcurrent: testFunction,
);