Przeglądaj źródła

limited SET values in interpreter to platform set values (explicit conversion to SET)

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7850 8c9fc860-2736-0410-a75d-ab315db34111
felixf 7 lat temu
rodzic
commit
33521387a3
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      source/FoxInterpreter.Mod

+ 1 - 1
source/FoxInterpreter.Mod

@@ -743,7 +743,7 @@ TYPE
 
 		PROCEDURE VisitSetValue*(x: SyntaxTree.SetValue);
 		BEGIN
-			NewSet(x.value)
+			NewSet(SET(x.value))
 		END VisitSetValue;
 
 		PROCEDURE VisitMathArrayValue*(x: SyntaxTree.MathArrayValue);