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

Action() public méthode

public Action ( OutputModelFactory factory, ActionAST ast ) : System.Collections.Generic
factory OutputModelFactory
ast Antlr4.Tool.Ast.ActionAST
Résultat System.Collections.Generic
        public Action(OutputModelFactory factory, ActionAST ast)
            : base(factory, ast)
        {
            RuleFunction rf = factory.GetCurrentRuleFunction();
            if (ast != null)
            {
                chunks = ActionTranslator.TranslateAction(factory, rf, ast.Token, ast);
            }
            else
            {
                chunks = new List<ActionChunk>();
            }
            //System.out.println("actions="+chunks);
        }

Same methods

Action::Action ( OutputModelFactory factory, StructDecl ctx, Template actionST ) : System.Collections.Generic
Action::Action ( OutputModelFactory factory, StructDecl ctx, string action ) : System.Collections.Generic
Action