Files
sdk/pkg/compiler/test/deferred_loading/data/deferred_constant1/main.dart
T
Joshua Litt 617e05ee49 [dart2js] Update deferred loading test to golden pre and final fragments.
Change-Id: If452f1bf1e36c3dcf5947beff6ff07be01674217
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/194202
Commit-Queue: Joshua Litt <joshualitt@google.com>
Reviewed-by: Sigmund Cherem <sigmund@google.com>
2021-04-07 16:48:17 +00:00

37 lines
1.0 KiB
Dart

// Copyright (c) 2014, 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.
/*library:
a_pre_fragments=[p1: {units: [1{lib2}], usedBy: [], needs: []}],
b_finalized_fragments=[f1: [1{lib2}]],
c_steps=[lib2=(f1)]
*/
// @dart = 2.7
import 'lib1.dart';
import 'lib2.dart' deferred as lib2;
/*member: main:
constants=[
ConstructedConstant(C(value=ConstructedConstant(C(value=IntConstant(7)))))=1{lib2},
ConstructedConstant(C(value=IntConstant(1)))=main{},
ConstructedConstant(C(value=IntConstant(2)))=1{lib2},
ConstructedConstant(C(value=IntConstant(4)))=main{},
ConstructedConstant(C(value=IntConstant(5)))=main{}],
member_unit=main{}
*/
main() async {
C1.value;
print(const C(4));
/*closure_unit=main{}*/ () => print(const C(5));
await lib2.loadLibrary();
print(lib2.C2.value);
print(lib2.C3.value);
print(lib2.C4.value);
print(lib2.C5.value);
print(lib2.C6);
print(lib2.C7.value);
}