Beispiel #1
0
 public SetSymbol(SetNode node) : base(node)
 {
     Header    = "Set->";
     entites   = new List <QLEntity>();
     entityDic = new Dictionary <int, QLEntity>();
 }
Beispiel #2
0
 public AttributeAccessNode(SetNode setNode, ExAttNode exAttNode)
 {
     SetNode   = setNode;
     ExAttNode = exAttNode;
 }
Beispiel #3
0
 public void SetSetReturn(SetNode returnSetNode)
 {
     returnSetNode.Parent = this;
     ReturnSetNode        = returnSetNode;
 }
Beispiel #4
0
 public TypePredNode(SetNode setNode, string type)
 {
     SetNode = setNode;
     Type    = type;
 }