Interface SyntaxCfgGuidedVisitorConfiguration<OtherInfo, Cfg, Ast>

interface SyntaxCfgGuidedVisitorConfiguration<
    OtherInfo = NoInfo,
    Cfg extends ControlFlowInformation = ControlFlowInformation,
    Ast extends NormalizedAst<OtherInfo> = NormalizedAst<OtherInfo>,
> {
    controlFlow: Cfg;
    defaultVisitingOrder: "forward" | "backward";
    normalizedAst: Ast;
}

Type Parameters

Hierarchy (View Summary)

Hierarchy-Diagram

UML class diagram of SyntaxCfgGuidedVisitorConfiguration

Properties

controlFlow: Cfg
defaultVisitingOrder: "forward" | "backward"
normalizedAst: Ast