Files
sdk/pkg/front_end/testcases/incremental/changing_modules_3.yaml.world.2.expect
T
Johnni Winther 3e44898e08 [kernel] Make FileUriNode.fileUri non-nullable
TEST=existing

Change-Id: I72583e500cb0b69d9352b040c3e2885f9e0450c5
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/195681
Commit-Queue: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Jens Johansen <jensj@google.com>
2021-04-19 08:03:30 +00:00

16 lines
379 B
Plaintext

main = main::main;
library from "package:foo/foo.dart" as foo {
static field dart.core::bool* foo2 = true;
final field dynamic unique_SimulateTransformer;
}
library from "org-dartlang-test:///main.dart" as main {
import "package:foo/foo.dart";
final field dynamic unique_SimulateTransformer;
static method main() → dynamic {
dart.core::print(foo::foo2);
}
}