blob: 367329acb7b2ab8754acd8c95ef7081c43b87c72 [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:
a_pre_fragments=[
p1: {units: [1{lib1}], usedBy: [], needs: []},
p2: {units: [2{lib3}], usedBy: [], needs: []},
p3: {units: [3{lib1, lib3}], usedBy: [], needs: []}],
b_finalized_fragments=[
f1: [1{lib1}],
f2: [2{lib3}],
f3: []],
c_steps=[
lib1=(f1),
lib3=(f2)]
*/
/*two-frag|three-frag.library:
a_pre_fragments=[
p1: {units: [1{lib1}], usedBy: [p3], needs: []},
p2: {units: [2{lib3}], usedBy: [p3], needs: []},
p3: {units: [3{lib1, lib3}], usedBy: [], needs: [p1, p2]}],
b_finalized_fragments=[
f1: [1{lib1}],
f2: [2{lib3}],
f3: []],
c_steps=[
lib1=(f1),
lib3=(f2)]
*/
// @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;
}