Skip to content

Commit 456dd6e

Browse files
authored
Enforce analyzer_use_new_elements rule (#3963)
1 parent e129586 commit 456dd6e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+133
-0
lines changed

analysis_options.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ linter:
1818
rules:
1919
- always_declare_return_types
2020
- always_put_required_named_parameters_first
21+
- analyzer_use_new_elements
2122
- avoid_bool_literals_in_conditional_expressions
2223
- avoid_catching_errors
2324
- avoid_dynamic_calls

analyzer_use_new_elements.txt

Whitespace-only changes.

lib/src/dartdoc_options.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
/// dartdoc's dartdoc_options.yaml configuration file follows similar loading
68
/// semantics to that of analysis_options.yaml,
79
/// [documented here](https://dart.dev/guides/language/analysis-options).

lib/src/element_type.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
/// The models used to represent Dart types, all subclasses of [ElementType].
68
///
79
/// The only entrypoint for constructing these classes is [ElementType.for_].

lib/src/generator/generator_frontend.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:dartdoc/src/generator/generator.dart';
68
import 'package:dartdoc/src/generator/generator_backend.dart';
79
import 'package:dartdoc/src/generator/templates.dart';

lib/src/generator/templates.aot_renderers_for_html.dart

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
// ignore_for_file: unused_local_variable
1313
// ignore_for_file: non_constant_identifier_names, unnecessary_string_escapes
1414

15+
// ignore_for_file: analyzer_use_new_elements
16+
1517
import 'dart:convert';
1618

1719
import 'package:dartdoc/src/generator/template_data.dart';

lib/src/generator/templates.runtime_renderers.dart

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
// ignore_for_file: non_constant_identifier_names, unnecessary_string_escapes
88
// ignore_for_file: unused_import
99
// ignore_for_file: use_super_parameters
10+
11+
// ignore_for_file: analyzer_use_new_elements
12+
1013
import 'package:dartdoc/src/element_type.dart';
1114
import 'package:dartdoc/src/generator/template_data.dart';
1215
import 'package:dartdoc/src/model/annotation.dart';

lib/src/model/accessor.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'dart:convert';
68

79
import 'package:analyzer/dart/element/element.dart';

lib/src/model/annotation.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'dart:convert';
68

79
import 'package:analyzer/dart/element/element.dart';

lib/src/model/canonicalization.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:dartdoc/src/model/model.dart';
79
import 'package:dartdoc/src/warnings.dart';

lib/src/model/category.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/file_system/file_system.dart';
79
import 'package:dartdoc/src/dartdoc_options.dart';

lib/src/model/class.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:dartdoc/src/model/kind.dart';
79
import 'package:dartdoc/src/model/model.dart';

lib/src/model/comment_referable.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
/// Code for managing comment reference lookups in dartdoc.
68
library;
79

lib/src/model/constructor.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/source/line_info.dart';
79
import 'package:dartdoc/src/element_type.dart';

lib/src/model/container.dart

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
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.
4+
// ignore_for_file: analyzer_use_new_elements
45

56
import 'package:analyzer/dart/element/element.dart';
67
import 'package:analyzer/dart/element/scope.dart';

lib/src/model/container_member.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:dartdoc/src/model/attribute.dart';
68
import 'package:dartdoc/src/model/model.dart';
79
import 'package:meta/meta.dart';

lib/src/model/documentation.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:dartdoc/src/markdown_processor.dart';
68
import 'package:dartdoc/src/render/documentation_renderer.dart';
79
import 'package:dartdoc/src/warnings.dart';

lib/src/model/documentation_comment.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
/// @docImport 'package:dartdoc/src/model/package_graph.dart';
68
library;
79

lib/src/model/dynamic.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:dartdoc/src/element_type.dart';
79
import 'package:dartdoc/src/model/comment_referable.dart';

lib/src/model/enum.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/analysis/features.dart';
68
import 'package:analyzer/dart/element/element.dart';
79
import 'package:dartdoc/src/model/kind.dart';

lib/src/model/extension.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/dart/element/nullability_suffix.dart';
79
import 'package:analyzer/dart/element/type.dart';

lib/src/model/extension_type.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:dartdoc/src/element_type.dart';
79
import 'package:dartdoc/src/model/comment_referable.dart';

lib/src/model/field.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'dart:convert';
68

79
import 'package:analyzer/dart/element/element.dart';

lib/src/model/getter_setter_combo.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'dart:convert';
68

79
import 'package:analyzer/dart/ast/ast.dart'

lib/src/model/inheritable.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:collection/collection.dart' show IterableExtension;
79
import 'package:dartdoc/src/model/attribute.dart';

lib/src/model/inheriting_container.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/dart/element/type.dart';
79
import 'package:collection/collection.dart' show IterableExtension;

lib/src/model/library.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/analysis/features.dart';
68
import 'package:analyzer/dart/element/element.dart';
79
import 'package:analyzer/dart/element/scope.dart';

lib/src/model/locatable.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart' show Element;
68
import 'package:dartdoc/src/model/model.dart';
79

lib/src/model/method.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/source/line_info.dart';
79
// ignore: implementation_imports

lib/src/model/mixin.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/dart/element/type.dart';
79
import 'package:dartdoc/src/element_type.dart';

lib/src/model/model_element.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
/// The models used to represent Dart code.
68
library;
79

lib/src/model/model_function.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:dartdoc/src/element_type.dart';
79
import 'package:dartdoc/src/model/comment_referable.dart';

lib/src/model/model_node.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'dart:convert';
68

79
import 'package:analyzer/dart/analysis/analysis_context.dart';

lib/src/model/nameable.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/dart/element/type.dart' show DartType;
79
import 'package:collection/collection.dart';

lib/src/model/never.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:dartdoc/src/model/comment_referable.dart';
79
import 'package:dartdoc/src/model/kind.dart';

lib/src/model/package.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:dartdoc/src/dartdoc_options.dart';
79
import 'package:dartdoc/src/io_utils.dart';

lib/src/model/package_builder.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'dart:async';
68

79
import 'package:analyzer/dart/analysis/analysis_context.dart';

lib/src/model/package_graph.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'dart:collection';
68

79
import 'package:analyzer/dart/analysis/analysis_context.dart';

lib/src/model/parameter.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
// ignore: implementation_imports
79
import 'package:analyzer/src/dart/element/member.dart' show ParameterMember;

lib/src/model/prefix.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/dart/element/scope.dart';
79
import 'package:dartdoc/src/model/comment_referable.dart';

lib/src/model/source_code_mixin.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/source/line_info.dart';
79
import 'package:dartdoc/src/model/model.dart';

lib/src/model/top_level_variable.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:dartdoc/src/model/attribute.dart';
79
import 'package:dartdoc/src/model/comment_referable.dart';

lib/src/model/type_parameter.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:dartdoc/src/element_type.dart';
79
import 'package:dartdoc/src/model/comment_referable.dart';

lib/src/model/typedef.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'package:analyzer/dart/element/element.dart';
68
import 'package:analyzer/dart/element/type.dart';
79
import 'package:dartdoc/src/element_type.dart';

lib/src/model_utils.dart

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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_for_file: analyzer_use_new_elements
6+
57
import 'dart:io' show Platform;
68

79
import 'package:analyzer/dart/element/element.dart';

0 commit comments

Comments
 (0)