Skip to content

Commit 8224045

Browse files
authored
Ignore illegal_language_version_override for non null-safe fixtures (#1891)
1 parent e42a030 commit 8224045

File tree

13 files changed

+13
-0
lines changed

13 files changed

+13
-0
lines changed

fixtures/_test/example/append_body/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
import 'dart:async';

fixtures/_test/example/hello_world/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
import 'dart:async';

fixtures/_test/example/hello_world/part.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
part of 'main.dart';

fixtures/_test/lib/deferred_library.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
/// A library that we can import.

fixtures/_test/lib/library.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
/// A library that we can import.

fixtures/_testCircular1/lib/library1.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
/// A library that we can import.

fixtures/_testCircular2/lib/library2.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
import 'package:_test_circular1/library1.dart';

fixtures/_testCircular2/web/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
import 'dart:async';

fixtures/_testPackage/lib/src/test_part.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
part of '../test_library.dart';

fixtures/_testPackage/lib/test_library.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
part 'src/test_part.dart';

fixtures/_testPackage/web/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart=2.9
67

78
import 'dart:async';

fixtures/_webdevSmoke/web/main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart = 2.9
67

78
import 'dart:async';

fixtures/_webdevSmoke/web/scopes_main.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
// ignore: illegal_language_version_override
56
// @dart = 2.9
67

78
/// An example with more complicated scope

0 commit comments

Comments
 (0)