Преглед на файлове

Remove redundant space at end of __js__ block in string_rec

Caused a ; to be inserted after start of for loop block unnecessarigly.
Luca Deltodesco преди 12 години
родител
ревизия
b935ecdf40
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      std/js/Boot.hx

+ 1 - 1
std/js/Boot.hx

@@ -122,7 +122,7 @@ class Boot {
 				var str = "{\n";
 				s += "\t";
 				var hasp = (o.hasOwnProperty != null);
-				__js__("for( var k in o ) { ");
+				__js__("for( var k in o ) {");
 					if( hasp && !o.hasOwnProperty(k) )
 						__js__("continue");
 					if( k == "prototype" || k == "__class__" || k == "__super__" || k == "__interfaces__" || k == "__properties__" )