VisitLine() public method

public VisitLine ( String line ) : void
line String
return void
Beispiel #1
0
 public void Visitline(string args)
 {
     CommonTokenStream str = new CommonTokenStream();
     //We need the syntax for the core object
     Test_Core myprog = new Test_Core(str, "");
     myprog.error += new Test_Core.errorreport(Onerror);
     myprog.VisitLine(args);
 }