Selaa lähdekoodia

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

Dan Korostelev 8 vuotta sitten
vanhempi
commit
07bf6e0851
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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 = {};");
 	}
 
 }