Bläddra i källkod

Removing "current_syssym" again

git-svn-id: branches/svenbarth/classhelpers@17309 -
svenbarth 14 år sedan
förälder
incheckning
3c477c67ec
2 ändrade filer med 0 tillägg och 6 borttagningar
  1. 0 4
      compiler/pexpr.pas
  2. 0 2
      compiler/symsym.pas

+ 0 - 4
compiler/pexpr.pas

@@ -261,11 +261,8 @@ implementation
         p1,p2,paras  : tnode;
         err,
         prev_in_args : boolean;
-        prev_current_syssym : byte;
       begin
         prev_in_args:=in_args;
-        prev_current_syssym:=current_syssym;
-        current_syssym:=l;
         case l of
 
           in_new_x :
@@ -833,7 +830,6 @@ implementation
 
         end;
         in_args:=prev_in_args;
-        current_syssym:=prev_current_syssym;
       end;
 
 

+ 0 - 2
compiler/symsym.pas

@@ -323,8 +323,6 @@ interface
 
     var
        generrorsym : tsym;
-       current_syssym : byte = 0; { used for parsing expressions that need
-                                    special handling in the system functions }
 
 implementation