ASTRunStatus class

The runtime status of execution.

Used to indicate:

  • If a function have returned.
  • If a loop have continued or broke.
Available Extensions

Constructors

ASTRunStatus()

Properties

broke bool
Returns true if some statement demands loop interruption (break).
getter/setter pair
continued bool
Returns true if some statement demands continue of loop (next iteration).
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
returned bool
getter/setter pair
returnedFutureValue FutureOr<ASTValue>?
getter/setter pair
returnedValue ASTValue?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
returnFutureOrValue(FutureOr<ASTValue> futureValue) FutureOr<ASTValue>
returnNull() ASTValueNull
returnValue(ASTValue value) ASTValue
returnVoid() ASTValueVoid
toString() String
A string representation of this object.
inherited

Operators

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

Static Properties

dummy ASTRunStatus
final