예제 #1
0
 public override string TypeToSource()
 {
     if (type == null)
     {
         return("[?]");
     }
     else
     {
         return("[?:" + type.ToSource() + "]");
     }
 }
예제 #2
0
파일: IsPending.cs 프로젝트: tslaats/Reseda
 public override string ToSource()
 {
     return(child.ToSource() + ":p");
 }
예제 #3
0
파일: NegOp.cs 프로젝트: tslaats/Reseda
 public override string ToSource()
 {
     return(Symbols.Neg + child.ToSource());
 }
예제 #4
0
파일: BinOp.cs 프로젝트: tslaats/Reseda
 public override String ToSource()
 {
     return(left.ToSource() + " " + Symbol + " " + right.ToSource());
 }
예제 #5
0
 public override string TypeToSource()
 {
     return("[" + expression.ToSource() + "]");
 }