Files
sdk/tests/language/nnbd/syntax/class_member_declarations_test.dart
T
Lasse R.H. Nielsen d352bc28b8 Remove (most) uses of the "non-nullable" experiment flag.
Since the flag is now enabled by default, there should be no mention of it.
There are still some uses in front_end/testcases that are not just removable
(it also uses `no-non-nullable`). There migth be more uses that are not
as easily found as grepping for `--enable-experiment

Removes two VM tests where fixing them meant they were just duplicating
the corresponding non *_2/ tests.
Fixes #44941

TEST= Large number of tests chaged.=(no-)?non-nullable`.

Change-Id: Ief755981ccde9a5482fcdf408c2929c74433a710
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/183688
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Nate Bosch <nbosch@google.com>
2021-02-12 17:16:54 +00:00

53 lines
1017 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.
class A {
static late final x2;
static late int x3;
static late final A x4;
static late final x6 = 0;
static late int x7 = 0;
static late final A? x8 = null;
covariant late var x13;
covariant late var x14 = '';
covariant late double x23;
covariant late String x24 = '';
late final x26;
late int x27;
late final A x28;
late final x30 = 0;
late int x31 = 0;
late final A? x32 = null;
List foo() {
final x41 = true;
late final x42;
late final x43 = [], x44 = {};
return x43;
}
}
abstract class B {
m1(
int some,
regular,
covariant parameters, {
required p1,
required covariant p3,
required covariant int p4,
});
}
main() {
A? a;
var s = '' as String?;
a
?..foo().length
..x27 = s!.toString().length;
}