Skip to content

Commit 0691b01

Browse files
committed
Elements. Stop referencing XyzElement in element.dart
Change-Id: Idbbbb76a2c63ea2997b1b0c43bc4e94c9ca8e1f1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/419060 Reviewed-by: Paul Berry <[email protected]> Commit-Queue: Konstantin Shcheglov <[email protected]>
1 parent 4a96dd1 commit 0691b01

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

pkg/analyzer/lib/dart/element/element.dart

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
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-
75
/// Defines the element model. The element model describes the semantic (as
86
/// opposed to syntactic) structure of Dart code. The syntactic structure of the
97
/// code is modeled by the [AST
108
/// structure](../dart_ast_ast/dart_ast_ast-library.html).
119
///
1210
/// The element model consists of two closely related kinds of objects: elements
13-
/// (instances of a subclass of [Element]) and types. This library defines the
11+
/// (instances of a subclass of `Element`) and types. This library defines the
1412
/// elements, the types are defined in
1513
/// [type.dart](../dart_element_type/dart_element_type-library.html).
1614
///
@@ -22,8 +20,7 @@
2220
/// children of the element representing the class.
2321
///
2422
/// Every complete element structure is rooted by an instance of the class
25-
// ignore:deprecated_member_use_from_same_package
26-
/// [LibraryElement]. A library element represents a single Dart library. Every
23+
/// `LibraryElement`. A library element represents a single Dart library. Every
2724
/// library is defined by one or more compilation units (the library and all of
2825
/// its parts). The compilation units are represented by the class
2926
/// `CompilationUnitElement` and are children of the library that is defined by

0 commit comments

Comments
 (0)