blob: 41928b399e9a5c89ab4e62a84be5148db38cf97a [file] [log] [blame]
# Copyright (c) 2022, 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.md file.
type: newworld
worlds:
- entry: entry.dart
checkEntries: false
sources:
entry.dart: |
part of "lib.dart";
lib.dart: |
import 'lib1.dart';
export 'lib1.dart';
part "entry.dart";
lib1.dart: |
import 'lib.dart';
main() {
print("Hello, World!");
}
expectedLibraryCount: 2
- entry: entry.dart
checkEntries: false
worldType: updated
expectInitializeFromDill: false
invalidate:
- lib.dart
expectedLibraryCount: 2
advancedInvalidation: bodiesOnly
- entry: entry.dart
checkEntries: false
worldType: updated
expectInitializeFromDill: false
invalidate:
- lib1.dart
expectedLibraryCount: 2
advancedInvalidation: bodiesOnly