Skip to content

Commit 33b6c95

Browse files
author
Dart CI
committed
Version 2.10.0-103.0.dev
Merge commit '0cfdfd792ac593cc1aa89fd21ebe23e0cc44a57d' into 'dev'
2 parents 31bf77a + 0cfdfd7 commit 33b6c95

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
abstract class A {
2+
abstract covariant num covariantInstanceField;
3+
abstract final int finalInstanceField;
4+
abstract int instanceField;
5+
}
6+
7+
main() {}
8+
mixin B {
9+
abstract covariant num covariantInstanceField;
10+
abstract final int finalInstanceField;
11+
abstract int instanceField;
12+
}

pkg/front_end/testcases/textual_outline.status

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,10 @@ nnbd_mixed/null_safety_invalid_language_version: FormatterCrash
166166
nnbd_mixed/nullable_extension_on_opt_out: FormatterCrash
167167
nnbd_mixed/opt_out: FormatterCrash
168168
nnbd/abstract_field_errors: FormatterCrash
169-
nnbd/abstract_fields_spec: FormatterCrash
170-
nnbd/abstract_fields: FormatterCrash
171169
nnbd/covariant_late_field: FormatterCrash
172170
nnbd/extension_bounds: FormatterCrash
173171
nnbd/extension_never: FormatterCrash
174172
nnbd/external_field_errors: FormatterCrash
175-
nnbd/external_fields_spec: FormatterCrash
176173
nnbd/external_fields: FormatterCrash
177174
nnbd/forbidden_supers: FormatterCrash
178175
nnbd/infer_if_null: FormatterCrash

sdk/lib/cli/cli.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// {@category VM}
6+
/// {@nodoc}
67
library dart.cli;
78

89
import 'dart:async';

tools/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ CHANNEL dev
2727
MAJOR 2
2828
MINOR 10
2929
PATCH 0
30-
PRERELEASE 102
30+
PRERELEASE 103
3131
PRERELEASE_PATCH 0

0 commit comments

Comments
 (0)