示例#1
0
 /// <summary>
 /// Deselects the actual node (and only this).
 /// </summary>
 /// <param name="node">[in] The node which is visited.</param>
 public override void visitEnd(Columbus.Lim.Asg.Nodes.Base.ControlFlowBlock node, bool callVirtualBase)
 {
     selector(node.Id);
 }
示例#2
0
 /// <summary>
 /// Abstract visitor, which calls the visitor of the base class (Columbus.Lim.Asg.Nodes.Base.Base) of the Columbus.Lim.Asg.Nodes.Base.ControlFlowBlock node.
 /// </summary>
 /// <param name="node">[in] The node which is visited.</param>
 public override void visit(Columbus.Lim.Asg.Nodes.Base.ControlFlowBlock node, bool callVirtualBase)
 {
     visit((Columbus.Lim.Asg.Nodes.Base.Base)node, false);
 }
示例#3
0
 /// <summary>
 /// Adds a new hasControlFlowBlock edge to the node and inserts it after the other ones.
 /// </summary>
 /// <param name="node">[in] The end point of the new hasControlFlowBlock edge.</param>
 /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there is something wrong with the given node.</exception>
 public void addHasControlFlowBlock(Columbus.Lim.Asg.Nodes.Base.ControlFlowBlock node)
 {
     addHasControlFlowBlock(node.Id);
 }