ASTFunctionSignature class

An AST Function Signature.

Mixed in types
Available Extensions

Constructors

ASTFunctionSignature(List<ASTType?>? positionalTypes, Map<String, ASTType?>? namedTypes)

Properties

children Iterable<ASTNode>
The children nodes of this node.
no setteroverride
descendantChildren List<ASTNode>
Return the children and it's descendant children (unmodifiable).
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
isEmpty bool
no setter
isNotEmpty bool
no setter
namedTypes Map<String, ASTType?>?
getter/setter pair
parentNode ASTNode?
no setteroverride
positionalTypes List<ASTType?>?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
size int
no setter

Methods

cacheDescendantChildren() → void
Mark that this node can cache its descendantChildren.
inherited
getNodeIdentifier(String name, {ASTNode? requester}) ASTNode?
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
resolveNode(ASTNode? parentNode) → void
override
toString() String
A string representation of this object.
override

Operators

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

Static Methods

from(List? positionalParameters, Map? namedParameters) ASTFunctionSignature
toASTType(dynamic o, [VMContext? context]) ASTType?
toASTTypeList(List? params, [VMContext? context]) List<ASTType?>?
toASTTypeMap(Map? params, [VMContext? context]) Map<String, ASTType?>?