Files
sdk/pkg/front_end/testcases/incremental/changing_modules.yaml.world.3.expect
T
Johnni Winther 357e83e44d [cfe] Rename incremental_load/initialize_from_dill(_suite) to incremental(_suite)
Change-Id: I747151249330ed3c9c1026289be52d5ca0dca891
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/185600
Reviewed-by: Jens Johansen <jensj@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
2021-02-19 08:41:07 +00:00

44 lines
957 B
Plaintext

main = main::main;
library from "package:example/b.dart" as b {
static field dart.core::bool* example011 = true;
static method b() → dynamic {
dart.core::print("Hello from v0.1.1");
}
}
library from "package:foo/bar.dart" as bar {
static method bar() → dynamic {
dart.core::print("hello from bar");
}
}
library from "package:foo/baz.dart" as baz {
static method baz() → dynamic {
dart.core::print("hello from baz");
}
}
library from "package:foo/foo.dart" as foo {
import "package:example/b.dart";
import "package:foo/bar.dart";
import "package:foo/baz.dart";
static field dart.core::bool* foo2 = true;
static method foo() → dynamic {
dart.core::print("Hello from foo 2");
bar::bar();
baz::baz();
b::b();
}
}
library from "org-dartlang-test:///main.dart" as main {
import "package:foo/foo.dart";
static method main() → dynamic {
dart.core::print("hello");
foo::foo();
}
}