blob: f8f85a105bdc21a6c58cf5b86ef1488112fcba87 [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.
// ignore: illegal_language_version_override
// @dart=2.9
part 'src/test_part.dart';
int testLibraryValue = 3;
int testLibraryFunction(int formal) {
return formal; // Breakpoint: testLibraryFunction
}
class TestLibraryClass {
final int field;
final int _field;
TestLibraryClass(this.field, this._field) {
print('Constructor'); // Breakpoint: testLibraryClassConstructor
}
@override
String toString() => 'field: $field, _field: $_field';
}