コード例 #1
0
 public object Visit(EndStatement endStatement, object data)
 {
     DebugOutput(endStatement);
     AppendIndentation();
     sourceText.Append("System.Environment.Exit(0);");
     AppendNewLine();
     return null;
 }
コード例 #2
0
 public override object Visit(EndStatement endStatement, object data)
 {
     return null;
 }
コード例 #3
0
 public virtual object Visit(EndStatement endStatement, object data)
 {
     return data;
 }