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);
 	]