File tree Expand file tree Collapse file tree 6 files changed +1
-34
lines changed Expand file tree Collapse file tree 6 files changed +1
-34
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,6 @@ class ClassModifiersTest extends DartdocTestBase {
27
27
@override
28
28
String get libraryName => 'class_modifiers' ;
29
29
30
- @override
31
- String get sdkConstraint => '>=3.0.0-0.0-dev <4.0.0' ;
32
-
33
- @override
34
- List <String > get experiments => ['class-modifiers' , 'sealed-class' ];
35
-
36
30
/// From the table in the class modifiers feature specification.
37
31
void test_tableOfModifiers () async {
38
32
var library = await bootPackageWithLibrary ('''
Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ import 'src/utils.dart';
11
11
void main () {
12
12
defineReflectiveSuite (() {
13
13
defineReflectiveTests (ConstantValuesTest );
14
- if (namedArgumentsAnywhereAllowed) {
15
- defineReflectiveTests (ConstantValuesWithNamedArgumentsAnywhereTest );
16
- }
17
14
defineReflectiveTests (HiddenConstantsTest );
18
15
});
19
16
}
@@ -132,15 +129,6 @@ const aTearOffUnnamedConstructorArgsTypedef = Ft<String>.new;
132
129
expect (aTearOffUnnamedConstructorArgsTypedef.constantValue,
133
130
equals ('Ft<String>.new' ));
134
131
}
135
- }
136
-
137
- @reflectiveTest
138
- class ConstantValuesWithNamedArgumentsAnywhereTest extends DartdocTestBase {
139
- @override
140
- String get libraryName => 'constant_values' ;
141
-
142
- @override
143
- String get sdkConstraint => '>=2.17.0 <3.0.0' ;
144
132
145
133
void test_namedParametersInConstInvocationValue_specifiedLast () async {
146
134
var library = await bootPackageWithLibrary ('''
Original file line number Diff line number Diff line change @@ -18,15 +18,9 @@ void main() {
18
18
19
19
@reflectiveTest
20
20
class ExtensionTypesTest extends DartdocTestBase {
21
- @override
22
- List <String > get experiments => ['inline-class' ];
23
-
24
21
@override
25
22
String get libraryName => 'extension_types' ;
26
23
27
- @override
28
- String get sdkConstraint => '>=3.3.0 <4.0.0' ;
29
-
30
24
// TODO(srawlins): Test superinterfaces, references to members which exist via
31
25
// `implements`, references to primary constructor.
32
26
Original file line number Diff line number Diff line change @@ -21,9 +21,6 @@ class RecordTest extends DartdocTestBase {
21
21
@override
22
22
String get libraryName => 'records' ;
23
23
24
- @override
25
- String get sdkConstraint => '>=3.0.0 <4.0.0' ;
26
-
27
24
void test_noFields () async {
28
25
var library = await bootPackageWithLibrary ('''
29
26
void f(() r) {}
Original file line number Diff line number Diff line change @@ -20,15 +20,9 @@ void main() {
20
20
21
21
@reflectiveTest
22
22
class TypedefTest extends DartdocTestBase {
23
- @override
24
- List <String > get experiments => ['inline-class' ];
25
-
26
23
@override
27
24
String get libraryName => 'typedefs' ;
28
25
29
- @override
30
- String get sdkConstraint => '>=3.3.0 <4.0.0' ;
31
-
32
26
void test_class_basic () async {
33
27
var library = await bootPackageWithLibrary ('''
34
28
class C {}
Original file line number Diff line number Diff line change @@ -814,7 +814,7 @@ Rebuild them with "dart tool/task.dart build" and check the results in.
814
814
bool get _analyzerInUseIsTarget {
815
815
// TODO(srawlins): Add validation that this number falls within the
816
816
// constraints of the analyzer package which are set in `pubspec.yaml`.
817
- const analyzerTarget = '6.5.2 ' ;
817
+ const analyzerTarget = '6.8.0 ' ;
818
818
819
819
var lockfilePath = path.join (Directory .current.path, 'pubspec.lock' );
820
820
var lockfile = loadYaml (File (lockfilePath).readAsStringSync ()) as YamlMap ;
You can’t perform that action at this time.
0 commit comments