コード例 #1
0
 public override string ToSource()
 {
     if (iterateOver != null)
     {
         return(source.ToSource() + " -(" + iteratorName + " in " + iterateOver.ToSource() + ")->> {" + target.ToSource() + "}");
     }
     else
     {
         return(source.ToSource() + " " + Symbol + " {" + target.ToSource() + "}");
     }
 }
コード例 #2
0
ファイル: BasicRelation.cs プロジェクト: tslaats/Reseda
 public override String ToSource()
 {
     return(source.ToSource() + " " + Symbol + " " + target.ToSource());
 }
コード例 #3
0
ファイル: Path.cs プロジェクト: tslaats/Reseda
 public override string ToSource()
 {
     return "@" + value.ToSource();
 }