Files
sdk/pkg/kernel/test/binary/library_flags_test.dart
T
Johnni Winther 06d938046f [kernel] Remove NonNullableByDefaultCompiledMode
and TargetFlags.soundNullSafety

TEST=existing

Change-Id: I5e28d3d187b0f84fa23130c042fd3c55b89c687c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/413460
Reviewed-by: Ömer Ağacan <omersa@google.com>
Reviewed-by: Jens Johansen <jensj@google.com>
Reviewed-by: Alexander Markov <alexmarkov@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Nate Biggs <natebiggs@google.com>
2025-03-19 01:37:07 -07:00

33 lines
1022 B
Dart

// 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.
import 'utils.dart';
/// Test that library flags are serialized and read correctly.
void main() {
void setSynthetic(Library lib, bool isSynthetic) {
lib.isSynthetic = isSynthetic;
}
void verifySynthetic(Library lib, bool isSynthetic) {
if (lib.isSynthetic != isSynthetic) {
throw "Serialized and re-read library had change in synthetic flag.";
}
}
int combination = 0;
for (bool isSynthetic in [true, false]) {
combination++;
print("Checking combination #$combination ("
"isSynthetic: $isSynthetic");
Uri uri = Uri.parse("foo://bar.dart");
Library lib = new Library(uri, fileUri: uri);
setSynthetic(lib, isSynthetic);
Library lib2 = libRoundTrip(lib);
verifySynthetic(lib2, isSynthetic);
}
print("Done: Everything looks good.");
}