blob: 13f5f038ebb749cb95fa80144470187b25300699 [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.
/*spec.library:
output_units=[
f1: {units: [3{lib1, lib3}], usedBy: [], needs: []},
f2: {units: [1{lib1}], usedBy: [], needs: []},
f3: {units: [2{lib3}], usedBy: [], needs: []}],
steps=[
lib1=(f1, f2),
lib3=(f1, f3)]
*/
/*two-frag|three-frag.library:
output_units=[
f1: {units: [3{lib1, lib3}], usedBy: [], needs: [2, 3]},
f2: {units: [1{lib1}], usedBy: [1], needs: []},
f3: {units: [2{lib3}], usedBy: [1], needs: []}],
steps=[
lib1=(f1, f2),
lib3=(f1, f3)]
*/
// @dart = 2.7
import 'lib1.dart' deferred as lib1;
import 'lib2.dart' as lib2;
import 'lib3.dart' deferred as lib3;
/*member: main:
constants=[
ConstructedConstant(A<B*>())=1{lib1},
ConstructedConstant(A<F*>())=1{lib1},
ConstructedConstant(C<D*>())=main{},
ConstructedConstant(E<F*>())=2{lib3}],
member_unit=main{}
*/
main() async {
await lib1.loadLibrary();
lib1.field1;
lib1.field2;
lib2.field;
lib3.field;
}