コード例 #1
0
 public AliasDeclaration(TextPosition tp, Identifier from, Identifier to)
     : base(tp)
 {
     From = from;
     To = to;
     Name = To == null ? string.Empty : To.Value;
 }
コード例 #2
0
ファイル: TuplePair.cs プロジェクト: B-head/Dreit-prototype
 public TuplePair(TextPosition tp, Identifier tag, Element exp)
     : base(tp)
 {
     Tag = tag;
     Exp = exp;
     AppendChild(Tag);
     AppendChild(Exp);
 }