소스 검색

Patched bug with symbol insertion (removed variables and caused a GC bug)

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7871 8c9fc860-2736-0410-a75d-ab315db34111
felixf 7 년 전
부모
커밋
ffee4e604e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      source/FoxSyntaxTree.Mod

+ 1 - 1
source/FoxSyntaxTree.Mod

@@ -4725,7 +4725,7 @@ TYPE
 			ASSERT(v # NIL);
 			ASSERT(after # NIL);
 			v.nextVariable := after.nextVariable;
-			after.nextVariable := v.nextVariable;
+			after.nextVariable := v;
 			IF after = lastVariable THEN lastVariable := v END; 
 		END InsertVariable;