Example #1
0
 public void ProcessStatementLabel(DMASTProcStatementLabel statementLabel)
 {
     _proc.AddLabel(statementLabel.Name + "_codelabel");
     if (statementLabel.Body is not null)
     {
         _proc.StartScope();
         {
             ProcessBlockInner(statementLabel.Body);
         }
         _proc.EndScope();
         _proc.AddLabel(statementLabel.Name + "_end");
     }
 }
Example #2
0
 public void VisitProcStatementLabel(DMASTProcStatementLabel statementLabel)
 {
 }