blob: a00d8da20d94a48cac8a982d77ed31561329280c [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 '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 = 19;
// AUTOGENERATED END
const file = 'step_through_assign_int_test.dart';
void code() {
int? a; // LINE_A
int? b;
a = b = 42;
print(a);
print(b);
a = 42;
print(a);
final int d = 42;
print(d);
int? e = 41, f, g = 42;
print(e);
print(f);
print(g);
}
final stops = <String>[];
const expected = <String>[
'$file:${LINE_A + 0}:8', // on variable 'a'
'$file:${LINE_A + 1}:8', // on variable 'b'
'$file:${LINE_A + 2}:7', // on 'b'
'$file:${LINE_A + 3}:3', // on call to 'print'
'$file:${LINE_A + 4}:3', // on call to 'print'
'$file:${LINE_A + 5}:3', // on 'a'
'$file:${LINE_A + 6}:3', // on call to 'print'
'$file:${LINE_A + 7}:15', // on '='
'$file:${LINE_A + 8}:3', // on call to 'print'
'$file:${LINE_A + 9}:10', // on first '='
'$file:${LINE_A + 9}:16', // on 'f'
'$file:${LINE_A + 9}:21', // on second '='
'$file:${LINE_A + 10}:3', // on call to 'print'
'$file:${LINE_A + 11}:3', // on call to 'print'
'$file:${LINE_A + 12}:3', // on call to 'print'
'$file:${LINE_A + 13}:1', // on ending '}'
];
final tests = <IsolateTest>[
hasPausedAtStart,
setBreakpointAtLine(LINE_A),
runStepThroughProgramRecordingStops(stops),
checkRecordedStops(stops, expected),
];
void main([args = const <String>[]]) => runIsolateTests(
args,
tests,
'step_through_assign_int_test.dart',
testeeConcurrent: code,
pauseOnStart: true,
pauseOnExit: true,
);