Constructor
new OverrideContextNode( overrideNodes : Map.<Node, function()>, flowNode : Node | null )
Constructs a new override context node.
| overrideNodes |
A map mapping target nodes to their respective override callback functions. |
| flowNode |
The node whose context should be modified. Default is |
Properties
.isOverrideContextNode : boolean (readonly)
This flag can be used for type testing.
Default is true.
.type : string (readonly)
Returns the type of the node.
Methods
.getFlowContextData() : Object
Gathers the context data from all parent context nodes by traversing the hierarchy,
merging the overrideNodes maps from all encountered OverrideContextNode instances.
- Overrides: ContextNode#getFlowContextData
- Returns: The gathered context data, containing the merged
overrideNodesmap.