AstNode class abstract

A node in the AST structure for a Dart program.

Clients may not extend, implement or mix-in this class.

Implemented types
Implementers

Constructors

AstNode()

Properties

beginToken Token
Return the first token included in this node's source range.
no setter
childEntities Iterable<SyntacticEntity>
Return an iterator that can be used to iterate through all the entities (either AST nodes or tokens) that make up the contents of this node, including doc comments but excluding other comments.
no setter
end int
Return the offset of the character immediately following the last character of this node's source range.
no setteroverride
endToken Token
Return the last token included in this node's source range.
no setter
hashCode int
The hash code for this object.
no setterinherited
isSynthetic bool
Return true if this node is a synthetic node.
no setter
length int
Return the number of characters in the syntactic entity's source range.
no setteroverride
offset int
Return the offset from the beginning of the file to the first character in the syntactic entity.
no setteroverride
parent AstNode?
Return this node's parent node, or null if this node is the root of an AST structure.
no setter
root AstNode
Return the node at the root of this node's AST structure.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

accept<E>(AstVisitor<E> visitor) → E?
Use the given visitor to visit this node.
findPrevious(Token target) Token?
Return the token before target or null if it cannot be found.
getProperty<E>(String name) → E?
Return the value of the property with the given name, or null if this node does not have a property with the given name.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setProperty(String name, Object? value) → void
Set the value of the property with the given name to the given value. If the value is null, the property will effectively be removed.
thisOrAncestorMatching<E extends AstNode>(Predicate<AstNode> predicate) → E?
Return either this node or the most immediate ancestor of this node for which the predicate returns true, or null if there is no such node.
thisOrAncestorOfType<E extends AstNode>() → E?
Return either this node or the most immediate ancestor of this node that has the given type, or null if there is no such node.
toSource() String
Return a textual description of this node in a form approximating valid source.
toString() String
A string representation of this object.
inherited
visitChildren(AstVisitor visitor) → void
Use the given visitor to visit all of the children of this node.

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

LEXICAL_ORDER Comparator<AstNode>
A comparator that can be used to sort AST nodes in lexical order.
getter/setter pair