Remove() public method

public Remove ( string id ) : void
id string
return void
Beispiel #1
0
 public DataType VisitDel(DelStatement d)
 {
     foreach (var n in d.Expressions.AsList())
     {
         n.Accept(this);
         if (n is Identifier id)
         {
             scope.Remove(id.Name);
         }
     }
     return(DataType.Cont);
 }