Pipeline class

Constructors

Pipeline()
Pipeline.load(List<String> json)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
length int
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stack List<PipelineFunction>
no setter

Methods

add(List<PipelineFunction> fns) → void
after(PipelineFunction existingFn, PipelineFunction newFn) → void
before(PipelineFunction existingFn, PipelineFunction newFn) → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(dynamic fn) → void
reset() → void
run(List<Token?> tokens) List<Token?>
runString(String str, TokenMetaData metadata) List<String>
toJSON() List<String>
toString() String
A string representation of this object.
inherited

Operators

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

Static Properties

functionsToName Map<PipelineFunction, String>
getter/setter pair
registeredFunctions Map<String, PipelineFunction>
getter/setter pair

Static Methods

registerFunction(PipelineFunction fn, String label) → dynamic