Files
sdk/pkg/compiler/test/custom_split/data/two_step/shared.dart
T
Joshua Litt 663eab5565 [dart2js] Initial support for program split constraints.
Change-Id: I7e227e05d98a27a5d38386777f94ee0f4905dcde
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/206322
Commit-Queue: Joshua Litt <joshualitt@google.com>
Reviewed-by: Sigmund Cherem <sigmund@google.com>
2021-09-01 19:50:56 +00:00

20 lines
616 B
Dart

// Copyright (c) 2021, 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.
@pragma('dart2js:noInline')
/*member: step12:member_unit=1{step1, step2, step3}*/
step12() => '12';
@pragma('dart2js:noInline')
/*member: step13:member_unit=1{step1, step2, step3}*/
step13() => '13';
@pragma('dart2js:noInline')
/*member: step23:member_unit=2{step2, step3}*/
step23() => '23';
@pragma('dart2js:noInline')
/*member: step123:member_unit=1{step1, step2, step3}*/
step123() => '123';