浏览代码

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 年之前
父节点
当前提交
33521387a3
共有 1 个文件被更改,包括 1 次插入1 次删除
  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);