Example #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.Logical.Parameter node, bool callVirtualBase)
 {
     selector(node.Id);
 }
Example #2
0
 /// <summary>
 /// Abstract end visitor, which calls the end visitor of the base class (Columbus.Lim.Asg.Nodes.Base.Named) of the Columbus.Lim.Asg.Nodes.Logical.Parameter node.
 /// </summary>
 /// <param name="node">[in] The node which is visited.</param>
 public override void visitEnd(Columbus.Lim.Asg.Nodes.Logical.Parameter node, bool callVirtualBase)
 {
     visitEnd((Columbus.Lim.Asg.Nodes.Base.Named)node, false);
 }
Example #3
0
 /// <summary>
 /// Adds a new hasParameter edge to the node and inserts it after the other ones.
 /// </summary>
 /// <param name="node">[in] The end point of the new hasParameter edge.</param>
 /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there is something wrong with the given node.</exception>
 public void addHasParameter(Columbus.Lim.Asg.Nodes.Logical.Parameter node)
 {
     addHasParameter(node.Id);
 }