Antlr4.Codegen.Model.RuleActionFunction.RuleActionFunction C# (CSharp) Méthode

RuleActionFunction() public méthode

public RuleActionFunction ( OutputModelFactory factory, Rule r, string ctxType ) : Antlr4.Misc
factory OutputModelFactory
r Antlr4.Tool.Rule
ctxType string
Résultat Antlr4.Misc
        public RuleActionFunction(OutputModelFactory factory, Rule r, string ctxType)
            : base(factory)
        {
            name = r.name;
            ruleIndex = r.index;
            this.ctxType = ctxType;
        }
    }
RuleActionFunction