blob: 30b121e775c7133c0ecdc6a4696085b1da6eba71 [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.md file.
# Compile an application, change a file, but don't change the outline.
# Mixin something from the same file.
type: newworld
worlds:
- entry: main.dart
experiments: alternative-invalidation-strategy
sources:
main.dart: |
class A extends Object with B {
foo() {}
}
class B {
bar() {}
}
expectedLibraryCount: 1
- entry: main.dart
experiments: alternative-invalidation-strategy
worldType: updated
expectInitializeFromDill: false
invalidate:
- main.dart
sources:
main.dart: |
class A extends Object with B {
foo() {}
}
class B {
bar() {}
}
expectedLibraryCount: 1
expectsRebuildBodiesOnly: true