コード例 #1
0
ファイル: ASTForIn.cs プロジェクト: goric/cflat
 public override string Print(int depth)
 {
     return("for (" + TempVariable.Print(depth) + " in [" + Lower.Print(depth) + " .. " + Upper.Print(depth) + "])"
            + NewLine(depth + 1) + Body.Print(depth + 1));
 }