2
0
Эх сурвалжийг харах

[js] add semicolon to StringMap initialization expr (closes #6233)

Dan Korostelev 8 жил өмнө
parent
commit
07bf6e0851

+ 1 - 1
std/js/_std/haxe/ds/StringMap.hx

@@ -142,7 +142,7 @@ private class StringMapIterator<T> {
 	}
 
 	static function __init__() : Void {
-		untyped __js__("var __map_reserved = {}");
+		untyped __js__("var __map_reserved = {};");
 	}
 
 }