CallableDeclaration class abstract base

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

Inheritance

Constructors

CallableDeclaration(String originalName, ParameterList parameters, Iterable<Statement> children, FileSpan span, {SilentComment? comment})

Properties

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
originalName → String
The callable's original name, without underscores converted to hyphens.
final
parameters → ParameterList
The declared parameters this callable accepts.
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