Simon Krajewski 12 年之前
父節點
當前提交
d210a89785
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      interp.ml

+ 2 - 2
interp.ml

@@ -3438,13 +3438,13 @@ let enc_array l =
 	]
 
 let enc_string s =
-	enc_inst ["haxe";"ds";"String"] [
+	enc_inst ["String"] [
 		"__s", VString s;
 		"length", VInt (String.length s)
 	]
 
 let enc_hash h =
-	enc_inst ["Hash"] [
+	enc_inst ["haxe";"ds";"StringMap"] [
 		"h", VAbstract (AHash h);
 	]