예제 #1
0
파일: CodeGen.cs 프로젝트: bencz/Beryl
 public void visit(BeginCommand that)
 {
     Console.WriteLine("{");
     that.Commands.visit(this);
     Console.WriteLine("}");
 }
예제 #2
0
파일: Checker.cs 프로젝트: bencz/Beryl
 public void visit(BeginCommand that)
 {
     that.Commands.visit(this);
 }