2ad8d3d23e
Change-Id: I364366c2a5e9ce5895dbc4096d17ad04374b69d6 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/202310 Commit-Queue: Joshua Litt <joshualitt@google.com> Reviewed-by: Stephen Adams <sra@google.com>
12 lines
321 B
Dart
12 lines
321 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.
|
|
|
|
import 'lib_shared.dart';
|
|
|
|
void update() {
|
|
staticString = 'lib2';
|
|
}
|
|
|
|
String? value() => staticString;
|