Interface TwingExtension

interface TwingExtension {
    filters: TwingFilter[];
    functions: TwingFunction[];
    nodeVisitors: TwingNodeVisitor[];
    operators: TwingOperator[];
    tagHandlers: TwingTagHandler[];
    tests: TwingTest[];
}

Properties

filters: TwingFilter[]

Returns a list of filters to add to the existing list.

Array

functions: TwingFunction[]

Returns a list of functions to add to the existing list.

Array

nodeVisitors: TwingNodeVisitor[]

Returns the node visitor instances to add to the existing list.

Array

operators: TwingOperator[]

Returns a list of operators to add to the existing list.

TwingOperator[]

tagHandlers: TwingTagHandler[]

Returns the token parser instances to add to the existing list.

Array

tests: TwingTest[]

Returns a list of tests to add to the existing list.

Array