Browse Source

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

Dan Korostelev 8 years ago
parent
commit
07bf6e0851
1 changed files with 1 additions and 1 deletions
  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 {
-		untyped __js__("var __map_reserved = {}");
+		untyped __js__("var __map_reserved = {};");
 	}
 
 }