Ejemplo n.º 1
0
 public AliasDeclaration(TextPosition tp, Identifier from, Identifier to)
     : base(tp)
 {
     From = from;
     To = to;
     Name = To == null ? string.Empty : To.Value;
 }
Ejemplo n.º 2
0
 public TuplePair(TextPosition tp, Identifier tag, Element exp)
     : base(tp)
 {
     Tag = tag;
     Exp = exp;
     AppendChild(Tag);
     AppendChild(Exp);
 }