瀏覽代碼

Don't avoid a semicolon after static field gen.

class Main {
    static function main() {}
}

generated

Main.main = function () {
}

instead of

Main.main = function () {
};

(Another JSHint error)
Luca Deltodesco 12 年之前
父節點
當前提交
c7c730d374
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      genjs.ml

+ 0 - 1
genjs.ml

@@ -883,7 +883,6 @@ let gen_class_static_field ctx c f =
 			ctx.id_counter <- 0;
 			print ctx "%s = " path;
 			gen_value ctx e;
-			ctx.separator <- false;
 			newline ctx;
 			handle_expose ctx path f.cf_meta
 		| _ ->