فهرست منبع

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

Dan Korostelev 8 سال پیش
والد
کامیت
07bf6e0851
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      std/js/_std/haxe/ds/StringMap.hx

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

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