blob: 112a8fbd1933c24d59f92fd80e34379c0b743b61 [file] [log] [blame]
// 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.
/*Debugger:stepOver*/
main() {
/*bl*/ /*sl:1*/ List<int> data = [1, 2, 3];
for (
// comment forcing formatting
/*sl:3*/ /*sl:5*/ /*sl:7*/ /*sl:8*/ int datapoint
// comment forcing formatting
in
// comment forcing formatting
/*sl:2*/ data
// comment forcing formatting
) {
/*sl:4*/ /*sl:6*/ /*sl:8*/ print(datapoint);
}
/*sl:9 */ print("Done");
}