예제 #1
0
 /// <summary>
 /// Sets the specialize edge.
 /// </summary>
 /// <param name="node">[in] The new end point of the specialize edge.</param>
 /// <exception cref="Columbus.Lim.Asg.LimException">Throws LimException if there's something wrong with the given node.</exception>
 public void setSpecialize(Columbus.Lim.Asg.Nodes.Logical.ClassGeneric node)
 {
     if (m_specialize != 0)
     {
     }
     m_specialize = node.Id;
 }
예제 #2
0
 /// <summary>
 /// Abstract end visitor, which calls the end visitor of the base class (Columbus.Lim.Asg.Nodes.Logical.Class) of the Columbus.Lim.Asg.Nodes.Logical.ClassGeneric node.
 /// </summary>
 /// <param name="node">[in] The node which is visited.</param>
 public override void visitEnd(Columbus.Lim.Asg.Nodes.Logical.ClassGeneric node, bool callVirtualBase)
 {
     visitEnd((Columbus.Lim.Asg.Nodes.Logical.Class)node, false);
 }
예제 #3
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.ClassGeneric node, bool callVirtualBase)
 {
     selector(node.Id);
 }