ABB.Swum.ReactiveRule.ConstructSwum C# (CSharp) Метод

ConstructSwum() публичный метод

Constructs the SWUM for the given node, using this rule.
public ConstructSwum ( ProgramElementNode node ) : void
node ABB.Swum.Nodes.ProgramElementNode The node to construct SWUM for.
Результат void
        public override void ConstructSwum(ProgramElementNode node)
        {
            if (node is MethodDeclarationNode)
            {
                var mdn = (MethodDeclarationNode)node;
                mdn.AssignStructuralInformation(this.Splitter, this.PosTagger);
                ParseReactiveName(mdn);
                //set action, theme, arguments?
                mdn.SwumRuleUsed = this;
            }
        }
    }