blob: 71ea17993b11ca39b62b5d9c3bc3022ae97c5649 [file] [log] [blame]
// Copyright (c) 2025, 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 'package:expect/expect.dart';
import 'package:reload_test/reload_test_utils.dart';
String? noInitializer;
int withInitializer = 1;
class Statics {
static String? noInitializer;
static int withInitializer = 2;
}
class StaticsGeneric<T> {
static String? noInitializer;
static int withInitializer = 3;
}
class StaticsSetter {
static int counter = 0;
static const field = 5;
static const field2 = null;
static set field(int value) => StaticsSetter.counter += 1;
static set field2(value) => 42;
}
Future<void> main() async {
// Static setters of const fields should be properly reset.
Expect.equals(StaticsSetter.counter, 0);
Expect.equals(StaticsSetter.field, 5);
StaticsSetter.field = 100;
StaticsSetter.field = 100;
StaticsSetter.field = 100;
Expect.equals(StaticsSetter.field, 5);
Expect.equals(StaticsSetter.counter, 3);
}
/** DIFF **/
/*
}
Future<void> main() async {
- // All statics should contain their initial values.
- Expect.equals(null, noInitializer);
- Expect.equals(null, Statics.noInitializer);
- Expect.equals(null, StaticsGeneric.noInitializer);
-
- Expect.equals(1, withInitializer);
- Expect.equals(2, Statics.withInitializer);
- Expect.equals(3, StaticsGeneric.withInitializer);
-
// Static setters of const fields should be properly reset.
Expect.equals(StaticsSetter.counter, 0);
Expect.equals(StaticsSetter.field, 5);
@@ -44,6 +35,4 @@ Future<void> main() async {
StaticsSetter.field = 100;
Expect.equals(StaticsSetter.field, 5);
Expect.equals(StaticsSetter.counter, 3);
-
- await hotRestart();
}
*/