CallableDeclaration class abstract base AST

An abstract class for callables (functions or mixins) that are declared in user code.

Inheritance
Implementers

Constructors

CallableDeclaration(String name, ArgumentDeclaration arguments, Iterable<Statement> children, FileSpan span, {SilentComment? comment})

Properties

arguments ArgumentDeclaration
The declared arguments this callable accepts.
final
children List<Statement>
The child statements of this statement.
finalinherited
comment SilentComment?
The comment immediately preceding this declaration.
final
hashCode int
The hash code for this object.
no setterinherited
name String
The name of this callable, with underscores converted to hyphens.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
span → FileSpan
The source span associated with the node.
final

Methods

accept<T>(StatementVisitor<T> visitor) → T
Calls the appropriate visit method on visitor.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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