diff --git a/CHANGELOG.md b/CHANGELOG.md index 898e3e72a4..afb32b58cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ - Make the `--help` arg be prioritized in the CLI, so correctly prints help message and skip other commands. https://github.com/rescript-lang/rescript-compiler/pull/6667 - Remove redundant space for empty return in generated js code. https://github.com/rescript-lang/rescript-compiler/pull/6745 - Remove redundant space for export in generated js code. https://github.com/rescript-lang/rescript-compiler/pull/6560 +- Remove redundant space after continue in generated js code. https://github.com/rescript-lang/rescript-compiler/pull/6743 - Remove empty export blocks in generated js code. https://github.com/rescript-lang/rescript-compiler/pull/6744 - Fix indent for returned/thrown/wrapped in parentheses objects in generated js code. https://github.com/rescript-lang/rescript-compiler/pull/6746 - Fix indent in generated js code. https://github.com/rescript-lang/rescript-compiler/pull/6747 diff --git a/jscomp/core/j.ml b/jscomp/core/j.ml index 3b00a6a8a2..54d582557b 100644 --- a/jscomp/core/j.ml +++ b/jscomp/core/j.ml @@ -42,7 +42,6 @@ type exports = Js_op.exports type tag_info = Js_op.tag_info type property_name = Js_op.property_name -type label = string and ident = Ident.t (* we override `method ident` *) @@ -254,7 +253,7 @@ and statement_desc = (* Function declaration and Variable declaration *) | Exp of expression | If of expression * block * block - | While of label option * expression * block + | While of expression * block (* check if it contains loop mutable values, happens in nested loop *) | ForRange of for_ident_expression option @@ -262,7 +261,7 @@ and statement_desc = * for_ident * for_direction * block - | Continue of label + | Continue | Break (* only used when inline a fucntion *) | Return of expression (* Here we need track back a bit ?, move Return to Function ... diff --git a/jscomp/core/js_analyzer.ml b/jscomp/core/js_analyzer.ml index 2ca6443c5a..0bd1003653 100644 --- a/jscomp/core/js_analyzer.ml +++ b/jscomp/core/js_analyzer.ml @@ -123,7 +123,7 @@ let no_side_effect_obj = statement = (fun self s -> match s.statement_desc with - | Throw _ | Debugger | Break | Variable _ | Continue _ -> + | Throw _ | Debugger | Break | Variable _ | Continue -> raise_notrace Not_found | Exp e -> self.expression self e | Int_switch _ | String_switch _ | ForRange _ | If _ | While _ | Block _ @@ -226,7 +226,7 @@ and eq_statement ({ statement_desc = x0 } : J.statement) | Debugger -> y0 = Debugger | Break -> y0 = Break | Block xs0 -> ( match y0 with Block ys0 -> eq_block xs0 ys0 | _ -> false) - | Variable _ | If _ | While _ | ForRange _ | Continue _ | Int_switch _ + | Variable _ | If _ | While _ | ForRange _ | Continue | Int_switch _ | String_switch _ | Throw _ | Try _ -> false diff --git a/jscomp/core/js_dump.ml b/jscomp/core/js_dump.ml index 2d9332e0ca..843f3f412c 100644 --- a/jscomp/core/js_dump.ml +++ b/jscomp/core/js_dump.ml @@ -232,10 +232,8 @@ let break_nl f = semi f; P.newline f -let continue f s = +let continue f = P.string f L.continue; - P.space f; - P.string f s; semi f let formal_parameter_list cxt f l = iter_lst cxt f l Ext_pp_scope.ident comma_sp @@ -1020,14 +1018,8 @@ and statement_desc top cxt f (s : J.statement_desc) : cxt = P.string f L.else_; P.space f; brace_block cxt f s2) - | While (label, e, s) -> + | While (e, s) -> (* FIXME: print scope as well *) - (match label with - | Some i -> - P.string f i; - P.string f L.colon; - P.newline f - | None -> ()); let cxt = match e.expression_desc with | Number (Int { i = 1l }) -> @@ -1120,8 +1112,8 @@ and statement_desc top cxt f (s : J.statement_desc) : cxt = brace_block cxt f s) in action cxt - | Continue s -> - continue f s; + | Continue -> + continue f; cxt (* P.newline f; #2642 *) | Debugger -> diff --git a/jscomp/core/js_fold.ml b/jscomp/core/js_fold.ml index c3b129f6ff..8b76f8a075 100644 --- a/jscomp/core/js_fold.ml +++ b/jscomp/core/js_fold.ml @@ -47,8 +47,6 @@ class fold = let _self = _self#list _f_a _x_i1 in _self - method label : label -> 'self_type = unknown _self - method ident : ident -> 'self_type = unknown _self method module_id : module_id -> 'self_type = @@ -217,10 +215,9 @@ class fold = let _self = _self#block _x1 in let _self = _self#block _x2 in _self - | While (_x0, _x1, _x2) -> - let _self = option (fun _self -> _self#label) _self _x0 in - let _self = _self#expression _x1 in - let _self = _self#block _x2 in + | While (_x0, _x1) -> + let _self = _self#expression _x0 in + let _self = _self#block _x1 in _self | ForRange (_x0, _x1, _x2, _x3, _x4) -> let _self = @@ -231,9 +228,7 @@ class fold = let _self = _self#for_direction _x3 in let _self = _self#block _x4 in _self - | Continue _x0 -> - let _self = _self#label _x0 in - _self + | Continue -> _self | Break -> _self | Return _x0 -> let _self = _self#expression _x0 in diff --git a/jscomp/core/js_pass_scope.ml b/jscomp/core/js_pass_scope.ml index 3e8b946eb4..df74ace257 100644 --- a/jscomp/core/js_pass_scope.ml +++ b/jscomp/core/js_pass_scope.ml @@ -287,7 +287,7 @@ let record_scope_pass = closured_idents = Set_ident.union state.closured_idents lexical_scope; } - | While (_label, pred, body) -> + | While (pred, body) -> with_in_loop (self.block self (with_in_loop (self.expression self state pred) true) diff --git a/jscomp/core/js_record_fold.ml b/jscomp/core/js_record_fold.ml index e6df8e0a12..c748eec33f 100644 --- a/jscomp/core/js_record_fold.ml +++ b/jscomp/core/js_record_fold.ml @@ -51,8 +51,6 @@ type 'state iter = { and ('state, 'a) fn = 'state iter -> 'state -> 'a -> 'state -let label : 'a. ('a, label) fn = unknown - let ident : 'a. ('a, ident) fn = unknown let module_id : 'a. ('a, module_id) fn = @@ -223,10 +221,9 @@ let statement_desc : 'a. ('a, statement_desc) fn = let st = _self.block _self st _x1 in let st = _self.block _self st _x2 in st - | While (_x0, _x1, _x2) -> - let st = option label _self st _x0 in - let st = _self.expression _self st _x1 in - let st = _self.block _self st _x2 in + | While (_x0, _x1) -> + let st = _self.expression _self st _x0 in + let st = _self.block _self st _x1 in st | ForRange (_x0, _x1, _x2, _x3, _x4) -> let st = option for_ident_expression _self st _x0 in @@ -235,9 +232,7 @@ let statement_desc : 'a. ('a, statement_desc) fn = let st = for_direction _self st _x3 in let st = _self.block _self st _x4 in st - | Continue _x0 -> - let st = label _self st _x0 in - st + | Continue -> st | Break -> st | Return _x0 -> let st = _self.expression _self st _x0 in diff --git a/jscomp/core/js_record_iter.ml b/jscomp/core/js_record_iter.ml index a5d3fd24da..4e2903b42c 100644 --- a/jscomp/core/js_record_iter.ml +++ b/jscomp/core/js_record_iter.ml @@ -51,8 +51,6 @@ type iter = { and 'a fn = iter -> 'a -> unit -let label : label fn = unknown - let ident : ident fn = unknown let module_id : module_id fn = @@ -163,17 +161,16 @@ let statement_desc : statement_desc fn = _self.expression _self _x0; _self.block _self _x1; _self.block _self _x2 - | While (_x0, _x1, _x2) -> - option label _self _x0; - _self.expression _self _x1; - _self.block _self _x2 + | While (_x0, _x1) -> + _self.expression _self _x0; + _self.block _self _x1 | ForRange (_x0, _x1, _x2, _x3, _x4) -> option for_ident_expression _self _x0; finish_ident_expression _self _x1; _self.for_ident _self _x2; for_direction _self _x3; _self.block _self _x4 - | Continue _x0 -> label _self _x0 + | Continue -> () | Break -> () | Return _x0 -> _self.expression _self _x0 | Int_switch (_x0, _x1, _x2) -> diff --git a/jscomp/core/js_record_map.ml b/jscomp/core/js_record_map.ml index 800fa56c10..5310a94197 100644 --- a/jscomp/core/js_record_map.ml +++ b/jscomp/core/js_record_map.ml @@ -51,8 +51,6 @@ type iter = { and 'a fn = iter -> 'a -> 'a -let label : label fn = unknown - let ident : ident fn = unknown let module_id : module_id fn = @@ -221,11 +219,10 @@ let statement_desc : statement_desc fn = let _x1 = _self.block _self _x1 in let _x2 = _self.block _self _x2 in If (_x0, _x1, _x2) - | While (_x0, _x1, _x2) -> - let _x0 = option label _self _x0 in - let _x1 = _self.expression _self _x1 in - let _x2 = _self.block _self _x2 in - While (_x0, _x1, _x2) + | While (_x0, _x1) -> + let _x0 = _self.expression _self _x0 in + let _x1 = _self.block _self _x1 in + While (_x0, _x1) | ForRange (_x0, _x1, _x2, _x3, _x4) -> let _x0 = option for_ident_expression _self _x0 in let _x1 = finish_ident_expression _self _x1 in @@ -233,9 +230,7 @@ let statement_desc : statement_desc fn = let _x3 = for_direction _self _x3 in let _x4 = _self.block _self _x4 in ForRange (_x0, _x1, _x2, _x3, _x4) - | Continue _x0 -> - let _x0 = label _self _x0 in - Continue _x0 + | Continue as v -> v | Break as v -> v | Return _x0 -> let _x0 = _self.expression _self _x0 in diff --git a/jscomp/core/js_stmt_make.ml b/jscomp/core/js_stmt_make.ml index 718a8b6a17..0592627c2e 100644 --- a/jscomp/core/js_stmt_make.ml +++ b/jscomp/core/js_stmt_make.ml @@ -179,7 +179,7 @@ let rec block_last_is_return_throw_or_continue (x : J.block) = | [] -> false | [ x ] -> ( match x.statement_desc with - | Return _ | Throw _ | Continue _ -> true + | Return _ | Throw _ | Continue -> true | _ -> false) | _ :: rest -> block_last_is_return_throw_or_continue rest @@ -318,8 +318,8 @@ let if_ ?comment ?declaration ?else_ (e : J.expression) (then_ : J.block) : t = let assign ?comment id e : t = { statement_desc = J.Exp (E.assign (E.var id) e); comment } -let while_ ?comment ?label (e : E.t) (st : J.block) : t = - { statement_desc = While (label, e, st); comment } +let while_ ?comment (e : E.t) (st : J.block) : t = + { statement_desc = While (e, st); comment } let for_ ?comment for_ident_expression finish_ident_expression id direction (b : J.block) : t = @@ -333,15 +333,6 @@ let for_ ?comment for_ident_expression finish_ident_expression id direction let try_ ?comment ?with_ ?finally body : t = { statement_desc = Try (body, with_, finally); comment } -(* TODO: - actually, only loops can be labelled -*) -(* let continue_stmt ?comment ?(label="") () : t = - { - statement_desc = J.Continue label; - comment; - } *) - -let continue_ : t = { statement_desc = Continue ""; comment = None } +let continue_ : t = { statement_desc = Continue; comment = None } let debugger_block : t list = [ { statement_desc = Debugger; comment = None } ] diff --git a/jscomp/core/js_stmt_make.mli b/jscomp/core/js_stmt_make.mli index c3716e135e..dc36a464e5 100644 --- a/jscomp/core/js_stmt_make.mli +++ b/jscomp/core/js_stmt_make.mli @@ -132,7 +132,6 @@ val assign : ?comment:string -> J.ident -> J.expression -> t val while_ : ?comment:string -> - ?label:J.label -> J.expression -> J.block -> t diff --git a/jscomp/core/lam_compile.ml b/jscomp/core/lam_compile.ml index 1c68d766df..664908b88a 100644 --- a/jscomp/core/lam_compile.ml +++ b/jscomp/core/lam_compile.ml @@ -320,7 +320,6 @@ and compile_recursive_let ~all_bindings (cxt : Lam_compile_context.t) (id : Ident.t) (arg : Lam.t) : Js_output.t * initialization = match arg with | Lfunction { params; body; attr = { return_unit; async; oneUnitArg } } -> - let continue_label = Lam_util.generate_label ~name:id.name () in (* TODO: Think about recursive value {[ let rec v = ref (fun _ ... @@ -331,7 +330,6 @@ and compile_recursive_let ~all_bindings (cxt : Lam_compile_context.t) let ret : Lam_compile_context.return_label = { id; - label = continue_label; params; immutable_mask = Array.make (List.length params) true; new_params = Map_ident.empty; @@ -363,7 +361,7 @@ and compile_recursive_let ~all_bindings (cxt : Lam_compile_context.t) (Ext_list.map params (fun x -> Map_ident.find_default ret.new_params x x)) [ - S.while_ (* ~label:continue_label *) E.true_ + S.while_ E.true_ (Map_ident.fold ret.new_params body_block (fun old new_param acc -> S.define_variable ~kind:Alias old (E.var new_param) :: acc)); diff --git a/jscomp/core/lam_compile_context.ml b/jscomp/core/lam_compile_context.ml index 0ed48d684b..b831abecf4 100644 --- a/jscomp/core/lam_compile_context.ml +++ b/jscomp/core/lam_compile_context.ml @@ -33,7 +33,6 @@ type value = { exit_id : Ident.t; bindings : Ident.t list; order_id : int } *) type return_label = { id : Ident.t; - label : J.label; params : Ident.t list; immutable_mask : bool array; mutable new_params : Ident.t Map_ident.t; diff --git a/jscomp/core/lam_compile_context.mli b/jscomp/core/lam_compile_context.mli index da6ca41c3f..0a848ffa2c 100644 --- a/jscomp/core/lam_compile_context.mli +++ b/jscomp/core/lam_compile_context.mli @@ -33,7 +33,6 @@ type jbl_label = int type return_label = { id : Ident.t; - label : J.label; params : Ident.t list; immutable_mask : bool array; mutable new_params : Ident.t Map_ident.t; diff --git a/jscomp/core/lam_util.ml b/jscomp/core/lam_util.ml index 36fc31bc1a..44cd7c029d 100644 --- a/jscomp/core/lam_util.ml +++ b/jscomp/core/lam_util.ml @@ -212,16 +212,6 @@ let field_flatten_get | Some _ | None -> lam () - -(* TODO: check that if label belongs to a different - namesape -*) -let count = ref 0 - -let generate_label ?(name="") () = - incr count; - Printf.sprintf "%s_tailcall_%04d" name !count - #if (defined BROWSER || defined RELEASE) let dump ext lam = () diff --git a/jscomp/core/lam_util.mli b/jscomp/core/lam_util.mli index fc0b642e3e..25e257665b 100644 --- a/jscomp/core/lam_util.mli +++ b/jscomp/core/lam_util.mli @@ -54,8 +54,6 @@ val alias_ident_or_global : val refine_let : kind:Lam_compat.let_kind -> Ident.t -> Lam.t -> Lam.t -> Lam.t -val generate_label : ?name:string -> unit -> J.label - val dump : string -> Lam.t -> unit (** [dump] when {!Js_config.is_same_file}*) diff --git a/jscomp/test/a_scope_bug.js b/jscomp/test/a_scope_bug.js index ec1433ef4e..f80dcfef42 100644 --- a/jscomp/test/a_scope_bug.js +++ b/jscomp/test/a_scope_bug.js @@ -9,7 +9,7 @@ function odd(_z) { let a = (even + 4 | 0) + even | 0; console.log(String(a)); _z = 32; - continue ; + continue; }; } diff --git a/jscomp/test/and_or_tailcall_test.js b/jscomp/test/and_or_tailcall_test.js index ebdaf7e274..dbb2dba54b 100644 --- a/jscomp/test/and_or_tailcall_test.js +++ b/jscomp/test/and_or_tailcall_test.js @@ -13,7 +13,7 @@ function f(b, x, _n) { return false; } _n = n + 1 | 0; - continue ; + continue; }; } @@ -27,7 +27,7 @@ function or_f(b, x, _n) { return true; } _n = n + 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/arith_lexer.js b/jscomp/test/arith_lexer.js index c2c648e4e4..3fe31466a5 100644 --- a/jscomp/test/arith_lexer.js +++ b/jscomp/test/arith_lexer.js @@ -126,7 +126,7 @@ function __ocaml_lex_lexeme_rec(lexbuf, ___ocaml_lex_state) { switch (__ocaml_lex_state$1) { case 0 : ___ocaml_lex_state = 0; - continue ; + continue; case 1 : return { TAG: "NUMERAL", @@ -154,7 +154,7 @@ function __ocaml_lex_lexeme_rec(lexbuf, ___ocaml_lex_state) { default: Curry._1(lexbuf.refill_buff, lexbuf); ___ocaml_lex_state = __ocaml_lex_state$1; - continue ; + continue; } }; } diff --git a/jscomp/test/array_test.js b/jscomp/test/array_test.js index a679a0bae7..0a13101af3 100644 --- a/jscomp/test/array_test.js +++ b/jscomp/test/array_test.js @@ -51,7 +51,7 @@ function is_sorted(x) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/bal_set_mini.js b/jscomp/test/bal_set_mini.js index 7a8a039177..45059e12cf 100644 --- a/jscomp/test/bal_set_mini.js +++ b/jscomp/test/bal_set_mini.js @@ -110,7 +110,7 @@ function min_elt(_def, _x) { } _x = l; _def = x._1; - continue ; + continue; }; } @@ -161,7 +161,7 @@ function mem(x, _x_) { return true; } _x_ = c < 0 ? x_._0 : x_._2; - continue ; + continue; }; } diff --git a/jscomp/test/bdd.js b/jscomp/test/bdd.js index bc6e3917a5..25f7fd2192 100644 --- a/jscomp/test/bdd.js +++ b/jscomp/test/bdd.js @@ -15,10 +15,10 @@ function $$eval(_bdd, vars) { } if (Caml_array.get(vars, bdd._1)) { _bdd = bdd._3; - continue ; + continue; } _bdd = bdd._0; - continue ; + continue; }; } @@ -93,7 +93,7 @@ function resize(newSize) { tl: Caml_array.get(newArr, ind) }); _bucket = bucket.tl; - continue ; + continue; } }; }; @@ -167,7 +167,7 @@ function mkNode(low, v, high) { return n; } _b = b.tl; - continue ; + continue; } } else { let n_2 = (nodeC.contents = nodeC.contents + 1 | 0, nodeC.contents); diff --git a/jscomp/test/cps_test.js b/jscomp/test/cps_test.js index 8072089641..f75abc2f22 100644 --- a/jscomp/test/cps_test.js +++ b/jscomp/test/cps_test.js @@ -22,7 +22,7 @@ function test(param) { return Curry._1(acc, undefined); }); _n = n - 1 | 0; - continue ; + continue; }; }; f(10, (function (param) { diff --git a/jscomp/test/demo_int_map.js b/jscomp/test/demo_int_map.js index 3acfa2431f..0e8553c93c 100644 --- a/jscomp/test/demo_int_map.js +++ b/jscomp/test/demo_int_map.js @@ -146,7 +146,7 @@ function find(x, _param) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } diff --git a/jscomp/test/exception_raise_test.js b/jscomp/test/exception_raise_test.js index de64bce735..3cb6d010cf 100644 --- a/jscomp/test/exception_raise_test.js +++ b/jscomp/test/exception_raise_test.js @@ -231,7 +231,7 @@ function input_lines(ic, _acc) { hd: line, tl: acc }; - continue ; + continue; }; } diff --git a/jscomp/test/ext_array_test.js b/jscomp/test/ext_array_test.js index 010a958828..b81a644c3d 100644 --- a/jscomp/test/ext_array_test.js +++ b/jscomp/test/ext_array_test.js @@ -51,7 +51,7 @@ function reverse_of_list(x) { a[(len - i | 0) - 2 | 0] = x$1.hd; _x = x$1.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -72,10 +72,10 @@ function filter(f, a) { hd: v, tl: acc }; - continue ; + continue; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -97,10 +97,10 @@ function filter_map(f, a) { hd: Caml_option.valFromOption(v$1), tl: acc }; - continue ; + continue; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -145,7 +145,7 @@ function tolist_aux(a, f, _i, _res) { tl: res }) : res; _i = i - 1 | 0; - continue ; + continue; }; } @@ -176,7 +176,7 @@ function of_list_map(f, a) { arr[i] = Curry._1(f, x.hd); _x = x.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -192,7 +192,7 @@ function rfind_with_index(arr, cmp, v) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -223,7 +223,7 @@ function find_with_index(arr, cmp, v) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -254,7 +254,7 @@ function exists(p, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -272,7 +272,7 @@ function unsafe_loop(_index, len, p, xs, ys) { return false; } _index = index + 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/ext_filename_test.js b/jscomp/test/ext_filename_test.js index 05da3e3a3e..cf1a316671 100644 --- a/jscomp/test/ext_filename_test.js +++ b/jscomp/test/ext_filename_test.js @@ -50,7 +50,7 @@ function absolute_path(s) { } } _s = dir; - continue ; + continue; }; }; return aux(s$1); @@ -102,7 +102,7 @@ function relative_path(file_or_dir_1, file_or_dir_2) { if (dir1 && dir2 && dir1.hd === dir2.hd) { _dir2 = dir2.tl; _dir1 = dir1.tl; - continue ; + continue; } return Pervasives.$at(List.map((function (param) { return node_parent; @@ -162,7 +162,7 @@ function node_relative_path(node_modules_shorten, file1, dep_file) { return i; } _i = i + 1 | 0; - continue ; + continue; }; }; return Ext_string_test.tail_from(file2, skip(v + Test_literals.node_modules_length | 0)); @@ -177,7 +177,7 @@ function find_root_filename(_cwd, filename) { let cwd$p = Curry._1(Filename.dirname, cwd); if (cwd$p.length < cwd.length) { _cwd = cwd$p; - continue ; + continue; } let s = filename + " not found from " + cwd; throw { @@ -235,14 +235,14 @@ function split_aux(p) { let new_path = Curry._1(Filename.basename, p$1); if (new_path === Filename.dir_sep) { _p = dir; - continue ; + continue; } _acc = { hd: new_path, tl: acc }; _p = dir; - continue ; + continue; }; } @@ -274,7 +274,7 @@ function rel_normalized_absolute_path(from, to_) { if (xss.hd === yss.hd) { _yss = yss.tl; _xss = xs; - continue ; + continue; } let start = List.fold_left((function (acc, param) { return Filename.concat(acc, Ext_string_test.parent_dir_lit); @@ -302,19 +302,19 @@ function normalize_absolute_path(x) { let x = paths.hd; if (x === Ext_string_test.current_dir_lit) { _paths = xs; - continue ; + continue; } if (x === Ext_string_test.parent_dir_lit) { _paths = xs; _acc = drop_if_exist(acc); - continue ; + continue; } _paths = xs; _acc = { hd: x, tl: acc }; - continue ; + continue; }; }; let match = split_aux(x); @@ -331,7 +331,7 @@ function normalize_absolute_path(x) { } _rev_paths = rev_paths$1.tl; _acc = Filename.concat(rev_paths$1.hd, acc); - continue ; + continue; }; } else { return root; diff --git a/jscomp/test/ext_list_test.js b/jscomp/test/ext_list_test.js index da73dd7a37..c4331e1387 100644 --- a/jscomp/test/ext_list_test.js +++ b/jscomp/test/ext_list_test.js @@ -22,7 +22,7 @@ function filter_map(f, _xs) { }; } _xs = ys; - continue ; + continue; }; } @@ -42,14 +42,14 @@ function excludes(p, l) { if (Curry._1(p, x$1)) { excluded.contents = true; _x = l; - continue ; + continue; } _x = l; _accu = { hd: x$1, tl: accu }; - continue ; + continue; }; }; let v = aux(/* [] */0, l); @@ -82,14 +82,14 @@ function exclude_with_fact(p, l) { if (Curry._1(p, x$1)) { excluded.contents = Caml_option.some(x$1); _x = l; - continue ; + continue; } _x = l; _accu = { hd: x$1, tl: accu }; - continue ; + continue; }; }; let v = aux(/* [] */0, l); @@ -118,19 +118,19 @@ function exclude_with_fact2(p1, p2, l) { if (Curry._1(p1, x$1)) { excluded1.contents = Caml_option.some(x$1); _x = l; - continue ; + continue; } if (Curry._1(p2, x$1)) { excluded2.contents = Caml_option.some(x$1); _x = l; - continue ; + continue; } _x = l; _accu = { hd: x$1, tl: accu }; - continue ; + continue; }; }; let v = aux(/* [] */0, l); @@ -157,7 +157,7 @@ function same_length(_xs, _ys) { } _ys = ys.tl; _xs = xs.tl; - continue ; + continue; }; } @@ -179,7 +179,7 @@ function filter_mapi(f, xs) { } _xs = ys; _i = i + 1 | 0; - continue ; + continue; }; }; return aux(0, xs); @@ -202,7 +202,7 @@ function filter_map2(f, _xs, _ys) { } _ys = vs; _xs = us; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -241,7 +241,7 @@ function filter_map2i(f, xs, ys) { _ys = vs; _xs = us; _i = i + 1 | 0; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -274,7 +274,7 @@ function rev_map_append(f, _l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -291,7 +291,7 @@ function flat_map2(f, lx, ly) { _ly = ly$1.tl; _lx = lx$1.tl; _acc = List.rev_append(Curry._2(f, lx$1.hd, ly$1.hd), acc); - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -319,7 +319,7 @@ function flat_map_aux(f, _acc, append, _lx) { } _lx = lx.tl; _acc = List.rev_append(Curry._1(f, lx.hd), acc); - continue ; + continue; }; } @@ -485,7 +485,7 @@ function length_compare(_l, _n) { } _n = n - 1 | 0; _l = l.tl; - continue ; + continue; }; } @@ -501,7 +501,7 @@ function length_larger_than_n(n, _xs, _ys) { } _ys = ys.tl; _xs = xs.tl; - continue ; + continue; }; } @@ -525,7 +525,7 @@ function exclude_tail(x) { hd: x$2, tl: acc }; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -598,7 +598,7 @@ function drop(_n, _h) { } _h = List.tl(h); _n = n - 1 | 0; - continue ; + continue; }; } @@ -613,7 +613,7 @@ function find_first_not(p, _x) { return Caml_option.some(a); } _x = x.tl; - continue ; + continue; }; } @@ -628,7 +628,7 @@ function for_all_opt(p, _x) { return v; } _x = x.tl; - continue ; + continue; }; } @@ -652,7 +652,7 @@ function rev_map_acc(acc, f, l) { hd: Curry._1(f, x.hd), tl: accu }; - continue ; + continue; }; } @@ -694,7 +694,7 @@ function for_all2_no_exn(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -709,7 +709,7 @@ function find_no_exn(p, _x) { return Caml_option.some(x$1); } _x = x.tl; - continue ; + continue; }; } @@ -724,7 +724,7 @@ function find_opt(p, _x) { return v; } _x = x.tl; - continue ; + continue; }; } @@ -752,7 +752,7 @@ function split_map(f, xs) { hd: match[0], tl: bs }; - continue ; + continue; }; } @@ -848,7 +848,7 @@ function rev_except_last(xs) { hd: x, tl: acc }; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -873,7 +873,7 @@ function last(_xs) { return xs.hd; } _xs = tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -892,7 +892,7 @@ function assoc_by_string(def, k, _lst) { return match[1]; } _lst = lst.tl; - continue ; + continue; } if (def !== undefined) { return Caml_option.valFromOption(def); @@ -918,7 +918,7 @@ function assoc_by_int(def, k, _lst) { return match[1]; } _lst = lst.tl; - continue ; + continue; } if (def !== undefined) { return Caml_option.valFromOption(def); diff --git a/jscomp/test/ext_pervasives_test.js b/jscomp/test/ext_pervasives_test.js index 10c923ada3..c56bed008e 100644 --- a/jscomp/test/ext_pervasives_test.js +++ b/jscomp/test/ext_pervasives_test.js @@ -36,7 +36,7 @@ function is_pos_pow(n) { if ((n$1 & 1) === 0) { _n = (n$1 >> 1); _c = c + 1 | 0; - continue ; + continue; } throw { RE_EXN_ID: E, @@ -70,7 +70,7 @@ function is_pos_pow_2(n) { if ((n$1 & 1) === 0) { _n = (n$1 >> 1); _c = c + 1 | 0; - continue ; + continue; } throw { RE_EXN_ID: E, diff --git a/jscomp/test/ext_string_test.js b/jscomp/test/ext_string_test.js index 0a99db29f8..4fbe0c414b 100644 --- a/jscomp/test/ext_string_test.js +++ b/jscomp/test/ext_string_test.js @@ -41,14 +41,14 @@ function split_by(keep_emptyOpt, is_delim, str) { hd: v, tl: acc }; - continue ; + continue; } _pos = pos - 1 | 0; _last_pos = pos; - continue ; + continue; } _pos = pos - 1 | 0; - continue ; + continue; }; } @@ -131,7 +131,7 @@ function ends_with_index(s, end_) { } _k = k - 1 | 0; _j = j - 1 | 0; - continue ; + continue; }; } @@ -165,7 +165,7 @@ function check_any_suffix_case_then_chop(s, suffixes) { return $$String.sub(s, 0, id); } _suffixes = suffixes$1.tl; - continue ; + continue; }; } @@ -185,13 +185,13 @@ function escaped(s) { return true; } _i = i + 1 | 0; - continue ; + continue; } if (match > 91 || match < 35) { return true; } _i = i + 1 | 0; - continue ; + continue; }; }; if (needs_escape(0)) { @@ -211,7 +211,7 @@ function unsafe_for_all_range(s, _start, finish, p) { return false; } _start = start + 1 | 0; - continue ; + continue; }; } @@ -256,7 +256,7 @@ function unsafe_is_sub(sub, i, s, j, len) { return false; } _k = k + 1 | 0; - continue ; + continue; }; } else { return false; @@ -315,7 +315,7 @@ function non_overlap_count(sub, s) { } _off = i + sub_len | 0; _acc = acc + 1 | 0; - continue ; + continue; }; } @@ -367,7 +367,7 @@ function digits_of_str(s, offset, x) { } _acc = (Math.imul(10, acc) + Caml_string.get(s, offset + i | 0) | 0) - 48 | 0; _i = i + 1 | 0; - continue ; + continue; }; } @@ -403,7 +403,7 @@ function rindex_rec(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -417,7 +417,7 @@ function rindex_rec_opt(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -525,7 +525,7 @@ function unsafe_no_char(x, ch, _i, last_idx) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -539,7 +539,7 @@ function unsafe_no_char_idx(x, ch, _i, last_idx) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/fib.js b/jscomp/test/fib.js index 64d68d78ff..1bb77507c2 100644 --- a/jscomp/test/fib.js +++ b/jscomp/test/fib.js @@ -24,7 +24,7 @@ function fib2(n) { _i = i + 1 | 0; _b = a + b | 0; _a = b; - continue ; + continue; }; } diff --git a/jscomp/test/flattern_order_test.js b/jscomp/test/flattern_order_test.js index 2ea0a95359..f5878b46af 100644 --- a/jscomp/test/flattern_order_test.js +++ b/jscomp/test/flattern_order_test.js @@ -9,7 +9,7 @@ function even(_n) { return true; } _n = n - 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/flexible_array_test.js b/jscomp/test/flexible_array_test.js index 5efba02281..87624f5667 100644 --- a/jscomp/test/flexible_array_test.js +++ b/jscomp/test/flexible_array_test.js @@ -22,11 +22,11 @@ function sub(_tr, _k) { if (k % 2 === 0) { _k = k / 2 | 0; _tr = tr._1; - continue ; + continue; } _k = k / 2 | 0; _tr = tr._2; - continue ; + continue; }; } diff --git a/jscomp/test/format_regression.js b/jscomp/test/format_regression.js index d18ab27a51..1fac2d7e41 100644 --- a/jscomp/test/format_regression.js +++ b/jscomp/test/format_regression.js @@ -62,7 +62,7 @@ function advance_loop(state) { take_queue(state.pp_queue); Curry._1(format_pp_token(state, size$1 < 0 ? 1000000010 : size$1), match.token); state.pp_left_total = match.length + state.pp_left_total | 0; - continue ; + continue; }; } diff --git a/jscomp/test/genlex_test.js b/jscomp/test/genlex_test.js index df2ac0ff36..a912127e2e 100644 --- a/jscomp/test/genlex_test.js +++ b/jscomp/test/genlex_test.js @@ -52,7 +52,7 @@ function to_list(s) { hd: v, tl: acc }; - continue ; + continue; }; } diff --git a/jscomp/test/gpr_1698_test.js b/jscomp/test/gpr_1698_test.js index fc04a0f4e0..2de25ae94f 100644 --- a/jscomp/test/gpr_1698_test.js +++ b/jscomp/test/gpr_1698_test.js @@ -14,7 +14,7 @@ function is_number(_expr) { } case "Neg" : _expr = expr._0; - continue ; + continue; case "Sum" : case "Pow" : case "Frac" : @@ -67,7 +67,7 @@ function compare(context, state, _a, _b) { break; case "Neg" : _a = a._0; - continue ; + continue; case "Sum" : case "Pow" : exit$3 = 5; @@ -128,7 +128,7 @@ function compare(context, state, _a, _b) { if (exit$3 === 5) { if (b.TAG === "Neg") { _b = b._0; - continue ; + continue; } if (a.TAG === "Sum") { if (is_number(b)) { @@ -178,7 +178,7 @@ function compare(context, state, _a, _b) { } _b = nb; _a = na; - continue ; + continue; } }; diff --git a/jscomp/test/gpr_1701_test.js b/jscomp/test/gpr_1701_test.js index 5240ba4787..47f95035ef 100644 --- a/jscomp/test/gpr_1701_test.js +++ b/jscomp/test/gpr_1701_test.js @@ -51,7 +51,7 @@ function read_lines(inc) { hd: l, tl: acc }; - continue ; + continue; }; } @@ -74,7 +74,7 @@ function read_lines2(inc) { hd: l, tl: acc }; - continue ; + continue; }; } diff --git a/jscomp/test/gpr_2642_test.js b/jscomp/test/gpr_2642_test.js index d9a7332d89..8ba0039e05 100644 --- a/jscomp/test/gpr_2642_test.js +++ b/jscomp/test/gpr_2642_test.js @@ -10,13 +10,13 @@ function isfree(id, _x) { return id === x._0; case "Pdot" : _x = x._0; - continue ; + continue; case "Papply" : if (isfree(id, x._0)) { return true; } _x = x._1; - continue ; + continue; } }; diff --git a/jscomp/test/gpr_3697_test.js b/jscomp/test/gpr_3697_test.js index 7fea25f904..aa3d0f7474 100644 --- a/jscomp/test/gpr_3697_test.js +++ b/jscomp/test/gpr_3697_test.js @@ -16,7 +16,7 @@ function unfixLeak(_f) { while(true) { let f = _f; _f = CamlinternalLazy.force(f._0); - continue ; + continue; }; } diff --git a/jscomp/test/gpr_405_test.js b/jscomp/test/gpr_405_test.js index 3cfa9fdac3..56ec7c8456 100644 --- a/jscomp/test/gpr_405_test.js +++ b/jscomp/test/gpr_405_test.js @@ -84,7 +84,7 @@ function Make(funarg) { let x = find_default(on_the_stack, successor) ? Curry._2(H.find, n_labels, successor) : Curry._2(H.find, l_labels, successor); Curry._3(H.add, l_labels, top$1, Caml.int_max(Curry._2(H.find, l_labels, top$1), x)); _successors = successors.tl; - continue ; + continue; } if (Curry._2(H.find, l_labels, top$1) === Curry._2(H.find, n_labels, top$1)) { cut_set.contents = { @@ -110,7 +110,7 @@ function Make(funarg) { _rest_of_stack = rest_of_stack$1.tl; _top = new_top; _successors = match[1]; - continue ; + continue; }; }; return step2(first_node, /* [] */0); diff --git a/jscomp/test/gray_code_test.js b/jscomp/test/gray_code_test.js index f308aadc6f..0a570823d7 100644 --- a/jscomp/test/gray_code_test.js +++ b/jscomp/test/gray_code_test.js @@ -19,7 +19,7 @@ function gray_decode(n) { } _n = (n$1 >>> 1); _p = p ^ n$1; - continue ; + continue; }; } @@ -38,7 +38,7 @@ function bool_string(len, n) { } _n = (n$1 >>> 1); _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/inline_edge_cases.js b/jscomp/test/inline_edge_cases.js index a309c5c08d..1f00a2cd36 100644 --- a/jscomp/test/inline_edge_cases.js +++ b/jscomp/test/inline_edge_cases.js @@ -9,7 +9,7 @@ function test3(_n) { return (n + 5 | 0) + 4 | 0; } _n = n - 1 | 0; - continue ; + continue; }; } @@ -20,7 +20,7 @@ function test2(_n) { return test3(n) + 3 | 0; } _n = n - 1 | 0; - continue ; + continue; }; } @@ -35,11 +35,11 @@ function test0(_n) { return test2(n$1) + 2 | 0; } _n$1 = n$1 - 1 | 0; - continue ; + continue; }; } _n = n - 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/inline_map2_test.js b/jscomp/test/inline_map2_test.js index 9243db3b42..89bb5c14b7 100644 --- a/jscomp/test/inline_map2_test.js +++ b/jscomp/test/inline_map2_test.js @@ -151,7 +151,7 @@ function Make(Ord) { return x_._2; } _x_ = c < 0 ? x_._0 : x_._3; - continue ; + continue; }; }; let mem = function (x, _x_) { @@ -165,7 +165,7 @@ function Make(Ord) { return true; } _x_ = c < 0 ? x_._0 : x_._3; - continue ; + continue; }; }; let min_binding = function (_x) { @@ -185,7 +185,7 @@ function Make(Ord) { ]; } _x = l; - continue ; + continue; }; }; let max_binding = function (_x) { @@ -205,7 +205,7 @@ function Make(Ord) { ]; } _x = r; - continue ; + continue; }; }; let remove_min_binding = function (x) { @@ -256,7 +256,7 @@ function Make(Ord) { iter(f, x._0); Curry._2(f, x._1, x._2); _x = x._3; - continue ; + continue; }; }; let map = function (f, x) { @@ -301,7 +301,7 @@ function Make(Ord) { } _accu = Curry._3(f, m._1, m._2, fold(f, m._0, accu)); _m = m._3; - continue ; + continue; }; }; let for_all = function (p, _x) { @@ -317,7 +317,7 @@ function Make(Ord) { return false; } _x = x._3; - continue ; + continue; }; }; let exists = function (p, _x) { @@ -333,7 +333,7 @@ function Make(Ord) { return true; } _x = x._3; - continue ; + continue; }; }; let add_min_binding = function (k, v, x) { @@ -506,7 +506,7 @@ function Make(Ord) { _3: e }; _m = m._0; - continue ; + continue; }; }; let compare = function (cmp, m1, m2) { @@ -535,7 +535,7 @@ function Make(Ord) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let equal = function (cmp, m1, m2) { @@ -562,7 +562,7 @@ function Make(Ord) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let cardinal = function (x) { @@ -587,7 +587,7 @@ function Make(Ord) { ], tl: bindings_aux(accu, x._3) }; - continue ; + continue; }; }; let bindings = function (s) { @@ -781,7 +781,7 @@ function find(x, _x_) { return x_._2; } _x_ = c < 0 ? x_._0 : x_._3; - continue ; + continue; }; } @@ -796,7 +796,7 @@ function mem(x, _x_) { return true; } _x_ = c < 0 ? x_._0 : x_._3; - continue ; + continue; }; } @@ -817,7 +817,7 @@ function min_binding(_x) { ]; } _x = l; - continue ; + continue; }; } @@ -838,7 +838,7 @@ function max_binding(_x) { ]; } _x = r; - continue ; + continue; }; } @@ -892,7 +892,7 @@ function iter(f, _x) { iter(f, x._0); Curry._2(f, x._1, x._2); _x = x._3; - continue ; + continue; }; } @@ -940,7 +940,7 @@ function fold(f, _m, _accu) { } _accu = Curry._3(f, m._1, m._2, fold(f, m._0, accu)); _m = m._3; - continue ; + continue; }; } @@ -957,7 +957,7 @@ function for_all(p, _x) { return false; } _x = x._3; - continue ; + continue; }; } @@ -974,7 +974,7 @@ function exists(p, _x) { return true; } _x = x._3; - continue ; + continue; }; } @@ -1157,7 +1157,7 @@ function cons_enum(_m, _e) { _3: e }; _m = m._0; - continue ; + continue; }; } @@ -1187,7 +1187,7 @@ function compare(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -1215,7 +1215,7 @@ function equal(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -1242,7 +1242,7 @@ function bindings_aux(_accu, _x) { ], tl: bindings_aux(accu, x._3) }; - continue ; + continue; }; } @@ -1465,7 +1465,7 @@ function find$1(x, _x_) { return x_._2; } _x_ = c < 0 ? x_._0 : x_._3; - continue ; + continue; }; } @@ -1480,7 +1480,7 @@ function mem$1(x, _x_) { return true; } _x_ = c < 0 ? x_._0 : x_._3; - continue ; + continue; }; } @@ -1501,7 +1501,7 @@ function min_binding$1(_x) { ]; } _x = l; - continue ; + continue; }; } @@ -1522,7 +1522,7 @@ function max_binding$1(_x) { ]; } _x = r; - continue ; + continue; }; } @@ -1576,7 +1576,7 @@ function iter$1(f, _x) { iter$1(f, x._0); Curry._2(f, x._1, x._2); _x = x._3; - continue ; + continue; }; } @@ -1624,7 +1624,7 @@ function fold$1(f, _m, _accu) { } _accu = Curry._3(f, m._1, m._2, fold$1(f, m._0, accu)); _m = m._3; - continue ; + continue; }; } @@ -1641,7 +1641,7 @@ function for_all$1(p, _x) { return false; } _x = x._3; - continue ; + continue; }; } @@ -1658,7 +1658,7 @@ function exists$1(p, _x) { return true; } _x = x._3; - continue ; + continue; }; } @@ -1841,7 +1841,7 @@ function cons_enum$1(_m, _e) { _3: e }; _m = m._0; - continue ; + continue; }; } @@ -1871,7 +1871,7 @@ function compare$1(cmp, m1, m2) { } _e2 = cons_enum$1(e2._2, e2._3); _e1 = cons_enum$1(e1._2, e1._3); - continue ; + continue; }; } @@ -1899,7 +1899,7 @@ function equal$1(cmp, m1, m2) { } _e2 = cons_enum$1(e2._2, e2._3); _e1 = cons_enum$1(e1._2, e1._3); - continue ; + continue; }; } @@ -1926,7 +1926,7 @@ function bindings_aux$1(_accu, _x) { ], tl: bindings_aux$1(accu, x._3) }; - continue ; + continue; }; } diff --git a/jscomp/test/inline_map_demo.js b/jscomp/test/inline_map_demo.js index 1c988d3fc4..674004fdcf 100644 --- a/jscomp/test/inline_map_demo.js +++ b/jscomp/test/inline_map_demo.js @@ -179,7 +179,7 @@ function find(px, _x) { return x._2; } _x = c < 0 ? x._0 : x._3; - continue ; + continue; }; } diff --git a/jscomp/test/inline_map_test.js b/jscomp/test/inline_map_test.js index 94d7fd7471..05c1408e8c 100644 --- a/jscomp/test/inline_map_test.js +++ b/jscomp/test/inline_map_test.js @@ -135,7 +135,7 @@ function find(x, _x_) { return x_._2; } _x_ = c < 0 ? x_._0 : x_._3; - continue ; + continue; }; } diff --git a/jscomp/test/inline_regression_test.js b/jscomp/test/inline_regression_test.js index b1ee26c1c9..9773b21ff2 100644 --- a/jscomp/test/inline_regression_test.js +++ b/jscomp/test/inline_regression_test.js @@ -29,11 +29,11 @@ function generic_basename(is_dir_sep, current_dir_name, name) { return $$String.sub(name, n$1 + 1 | 0, (p - n$1 | 0) - 1 | 0); } _n$1 = n$1 - 1 | 0; - continue ; + continue; }; } _n = n - 1 | 0; - continue ; + continue; }; } } diff --git a/jscomp/test/int64_test.js b/jscomp/test/int64_test.js index 5a9e4ec179..17dc6deb67 100644 --- a/jscomp/test/int64_test.js +++ b/jscomp/test/int64_test.js @@ -832,7 +832,7 @@ function fib(_n, _a, _b) { _b = Caml_int64.add(a, b); _a = b; _n = n - 1 | 0; - continue ; + continue; }; } @@ -845,7 +845,7 @@ function fac(_n, _acc) { } _acc = Caml_int64.mul(acc, Caml_int64.of_int32(n)); _n = n - 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/int_map.js b/jscomp/test/int_map.js index 13340dc512..c05570e3a0 100644 --- a/jscomp/test/int_map.js +++ b/jscomp/test/int_map.js @@ -168,7 +168,7 @@ function find(x, _param) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -201,14 +201,14 @@ function find_first(f, _param) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -238,14 +238,14 @@ function find_first_opt(f, _param) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -278,14 +278,14 @@ function find_last(f, _param) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -315,14 +315,14 @@ function find_last_opt(f, _param) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -337,7 +337,7 @@ function find_opt(x, _param) { return Caml_option.some(param.d); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -352,7 +352,7 @@ function mem(x, _param) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -373,7 +373,7 @@ function min_binding(_param) { ]; } _param = l; - continue ; + continue; }; } @@ -391,7 +391,7 @@ function min_binding_opt(_param) { ]; } _param = l; - continue ; + continue; }; } @@ -412,7 +412,7 @@ function max_binding(_param) { ]; } _param = r; - continue ; + continue; }; } @@ -430,7 +430,7 @@ function max_binding_opt(_param) { ]; } _param = r; - continue ; + continue; }; } @@ -554,7 +554,7 @@ function iter(f, _param) { iter(f, param.l); Curry._2(f, param.v, param.d); _param = param.r; - continue ; + continue; }; } @@ -602,7 +602,7 @@ function fold(f, _m, _accu) { } _accu = Curry._3(f, m.v, m.d, fold(f, m.l, accu)); _m = m.r; - continue ; + continue; }; } @@ -619,7 +619,7 @@ function for_all(p, _param) { return false; } _param = param.r; - continue ; + continue; }; } @@ -636,7 +636,7 @@ function exists(p, _param) { return true; } _param = param.r; - continue ; + continue; }; } @@ -858,7 +858,7 @@ function cons_enum(_m, _e) { _3: e }; _m = m.l; - continue ; + continue; }; } @@ -888,7 +888,7 @@ function compare(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -916,7 +916,7 @@ function equal(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -943,7 +943,7 @@ function bindings_aux(_accu, _param) { ], tl: bindings_aux(accu, param.r) }; - continue ; + continue; }; } diff --git a/jscomp/test/loop_regression_test.js b/jscomp/test/loop_regression_test.js index 099baad7b1..edc17d1e7c 100644 --- a/jscomp/test/loop_regression_test.js +++ b/jscomp/test/loop_regression_test.js @@ -17,7 +17,7 @@ function f(param) { } acc.contents = acc.contents + v.contents | 0; v.contents = v.contents + 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/map_find_test.js b/jscomp/test/map_find_test.js index 4bf1f1c25c..3d8284291b 100644 --- a/jscomp/test/map_find_test.js +++ b/jscomp/test/map_find_test.js @@ -149,7 +149,7 @@ function find(x, _param) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -325,7 +325,7 @@ function find$1(x, _param) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } diff --git a/jscomp/test/map_test.js b/jscomp/test/map_test.js index df4d585d82..1a5f45a366 100644 --- a/jscomp/test/map_test.js +++ b/jscomp/test/map_test.js @@ -151,7 +151,7 @@ function cons_enum(_m, _e) { _3: e }; _m = m.l; - continue ; + continue; }; } @@ -181,7 +181,7 @@ function compare(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -209,7 +209,7 @@ function equal(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -365,7 +365,7 @@ function find(x, _param) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } diff --git a/jscomp/test/mario_game.js b/jscomp/test/mario_game.js index ca495da6e8..a865032667 100644 --- a/jscomp/test/mario_game.js +++ b/jscomp/test/mario_game.js @@ -2178,7 +2178,7 @@ function check_collisions(collid, all_collids, state) { } _acc = acc$1; _cs = cs.tl; - continue ; + continue; }; } @@ -2473,7 +2473,7 @@ function mem_loc(checkloc, _loclist) { return true; } _loclist = loclist.tl; - continue ; + continue; }; } @@ -2550,7 +2550,7 @@ function avoid_overlap(_lst, currentLst) { }, avoid_overlap(t, currentLst)); } _lst = t; - continue ; + continue; }; } @@ -2573,7 +2573,7 @@ function trim_edges(_lst, blockw, blockh) { }, trim_edges(t, blockw, blockh)); } _lst = t; - continue ; + continue; }; } @@ -2618,7 +2618,7 @@ function generate_coins(_block_coord) { }, generate_coins(t)); } _block_coord = t; - continue ; + continue; }; } @@ -3060,14 +3060,14 @@ function generate_enemies(blockw, blockh, _cbx, _cby, acc) { if (cby > blockh - 1 || cbx < 15) { _cby = 0; _cbx = cbx + 1; - continue ; + continue; } if (mem_loc([ cbx, cby ], acc) || cby === 0) { _cby = cby + 1; - continue ; + continue; } let prob = Random.$$int(30); if (prob < 3 && blockh - 1 === cby) { @@ -3085,7 +3085,7 @@ function generate_enemies(blockw, blockh, _cbx, _cby, acc) { return Pervasives.$at(enemy, generate_enemies(blockw, blockh, cbx, cby + 1, acc)); } _cby = cby + 1; - continue ; + continue; }; } @@ -3114,7 +3114,7 @@ function generate_block_enemies(_block_coord) { }, generate_block_enemies(t)); } _block_coord = t; - continue ; + continue; }; } @@ -3129,14 +3129,14 @@ function generate_block_locs(blockw, blockh, _cbx, _cby, _acc) { if (cby > blockh - 1) { _cby = 0; _cbx = cbx + 1; - continue ; + continue; } if (mem_loc([ cbx, cby ], acc) || cby === 0) { _cby = cby + 1; - continue ; + continue; } let prob = Random.$$int(100); if (prob < 5) { @@ -3145,10 +3145,10 @@ function generate_block_locs(blockw, blockh, _cbx, _cby, _acc) { let called_acc = Pervasives.$at(acc, undup_lst); _acc = called_acc; _cby = cby + 1; - continue ; + continue; } _cby = cby + 1; - continue ; + continue; }; } @@ -3183,11 +3183,11 @@ function generate_ground(blockw, blockh, _inc, _acc) { }); if (skip === 7 && blockw - inc > 32) { _inc = inc + 1; - continue ; + continue; } _acc = newacc; _inc = inc + 1; - continue ; + continue; } let newacc$1 = Pervasives.$at(acc, { hd: [ @@ -3201,7 +3201,7 @@ function generate_ground(blockw, blockh, _inc, _acc) { }); _acc = newacc$1; _inc = inc + 1; - continue ; + continue; }; } diff --git a/jscomp/test/miss_colon_test.js b/jscomp/test/miss_colon_test.js index f70c7122f5..8d8658bc50 100644 --- a/jscomp/test/miss_colon_test.js +++ b/jscomp/test/miss_colon_test.js @@ -33,7 +33,7 @@ function $plus$colon(_f, _g) { case "Add" : _g = g._1; _f = $plus$colon(f, g._0); - continue ; + continue; case "Var" : case "Mul" : return { @@ -107,7 +107,7 @@ function $star$colon(_f, _g) { case "Mul" : _g = g._1; _f = $star$colon(f, g._0); - continue ; + continue; } }; diff --git a/jscomp/test/number_lexer.js b/jscomp/test/number_lexer.js index dd30c3ec22..d0042c47fa 100644 --- a/jscomp/test/number_lexer.js +++ b/jscomp/test/number_lexer.js @@ -129,47 +129,47 @@ function __ocaml_lex_token_rec(l, lexbuf, ___ocaml_lex_state) { case 0 : Curry._1(l, "new line"); ___ocaml_lex_state = 0; - continue ; + continue; case 1 : Curry._1(l, "number"); Curry._1(l, Lexing.lexeme(lexbuf)); ___ocaml_lex_state = 0; - continue ; + continue; case 2 : Curry._1(l, "ident"); Curry._1(l, Lexing.lexeme(lexbuf)); ___ocaml_lex_state = 0; - continue ; + continue; case 3 : Curry._1(l, "+"); ___ocaml_lex_state = 0; - continue ; + continue; case 4 : Curry._1(l, "-"); ___ocaml_lex_state = 0; - continue ; + continue; case 5 : Curry._1(l, "*"); ___ocaml_lex_state = 0; - continue ; + continue; case 6 : Curry._1(l, "/"); ___ocaml_lex_state = 0; - continue ; + continue; case 7 : Curry._1(l, "("); ___ocaml_lex_state = 0; - continue ; + continue; case 8 : Curry._1(l, ")"); ___ocaml_lex_state = 0; - continue ; + continue; case 9 : return Curry._1(l, "eof"); default: Curry._1(lexbuf.refill_buff, lexbuf); ___ocaml_lex_state = __ocaml_lex_state$1; - continue ; + continue; } }; } diff --git a/jscomp/test/ocaml_re_test.js b/jscomp/test/ocaml_re_test.js index 6909a86aac..61b99a6b38 100644 --- a/jscomp/test/ocaml_re_test.js +++ b/jscomp/test/ocaml_re_test.js @@ -89,7 +89,7 @@ function union(_l, _l$p) { tl: r$p }; _l = r; - continue ; + continue; } _l$p = r$p; _l = { @@ -99,7 +99,7 @@ function union(_l, _l$p) { ], tl: r }; - continue ; + continue; }; } @@ -123,7 +123,7 @@ function inter(_l, _l$p) { let c1 = match$1[0]; if (Caml_obj.lessthan(c2, c1$p)) { _l = r; - continue ; + continue; } if (!Caml_obj.lessthan(c2$p, c1)) { if (Caml_obj.lessthan(c2, c2$p)) { @@ -145,7 +145,7 @@ function inter(_l, _l$p) { } } _l$p = r$p; - continue ; + continue; }; } @@ -178,7 +178,7 @@ function diff(_l, _l$p) { } if (c2$p < c1) { _l$p = r$p; - continue ; + continue; } let r$p$p = c2$p < c2 ? ({ hd: [ @@ -198,7 +198,7 @@ function diff(_l, _l$p) { } _l$p = r$p; _l = r$p$p; - continue ; + continue; }; } @@ -257,7 +257,7 @@ function mem(c, _s) { return c >= match[0]; } _s = s.tl; - continue ; + continue; }; } @@ -625,7 +625,7 @@ function hash(m, accu) { let match = l.hd; _accu = hash_combine(match[0], hash_combine(match[1], accu$1)); _l = l.tl; - continue ; + continue; }; } @@ -665,7 +665,7 @@ function first(f, _x) { return res; } _x = x.tl; - continue ; + continue; }; } @@ -834,7 +834,7 @@ function equal(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; case "TExp" : case "TMatch" : return false; @@ -855,7 +855,7 @@ function equal(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; case "TSeq" : case "TMatch" : return false; @@ -876,7 +876,7 @@ function equal(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } @@ -896,15 +896,15 @@ function hash$1(_l, _accu) { case "TSeq" : _accu = hash_combine(388635598, hash_combine(marks._1.id, hash$1(marks._0, accu))); _l = l.tl; - continue ; + continue; case "TExp" : _accu = hash_combine(726404471, hash_combine(marks._1.id, hash(marks._0, accu))); _l = l.tl; - continue ; + continue; case "TMatch" : _accu = hash_combine(471882453, hash(marks._0, accu)); _l = l.tl; - continue ; + continue; } }; @@ -1028,7 +1028,7 @@ function find_free(tbl, _idx, len) { return idx; } _idx = idx + 1 | 0; - continue ; + continue; }; } @@ -1069,7 +1069,7 @@ function split_at_match_rec(_l$p, _x) { hd: x$1, tl: l$p }; - continue ; + continue; case "TMatch" : return [ List.rev(l$p), @@ -1117,7 +1117,7 @@ function remove_duplicates(prev, _l, y) { let r = l.tl; if (List.memq(y.id, prev)) { _l = r; - continue ; + continue; } let match$2 = remove_duplicates({ hd: y.id, @@ -1134,7 +1134,7 @@ function remove_duplicates(prev, _l, y) { let r$1 = l.tl; if (List.memq(x$2.id, prev)) { _l = r$1; - continue ; + continue; } let match$3 = remove_duplicates({ hd: x$2.id, @@ -1481,7 +1481,7 @@ function iter(_n, f, _v) { } _v = Curry._1(f, v); _n = n - 1 | 0; - continue ; + continue; }; } @@ -1580,7 +1580,7 @@ function loop(info, s, pos, st) { _st$p = st$p$p; _st = st$p$1; _pos = pos$2; - continue ; + continue; } Caml_array.set(info.positions, st$p$1.idx, pos$2); return st$p$1; @@ -1668,13 +1668,13 @@ function scan_str(info, s, initial_state, groups) { if (st$p.idx >= 0) { _st = st$p; _pos = pos$1 + 1 | 0; - continue ; + continue; } if (st$p.idx === -3) { return st$p; } validate(info, s, pos$1, st); - continue ; + continue; }; } } @@ -1710,7 +1710,7 @@ function scan_str(info, s, initial_state, groups) { let desc$p = delta$1(info$1, cat, real_c, st$1); let st$p$2 = find_state(info$1.re, desc$p); Caml_array.set(st$1.next, c, st$p$2); - continue ; + continue; }; } } @@ -1744,7 +1744,7 @@ function trans_set(cache, cm, s) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } catch (raw_exn){ @@ -1772,12 +1772,12 @@ function is_charset(_x) { case "Sem" : case "Sem_greedy" : _x = x._1; - continue ; + continue; case "No_group" : case "Case" : case "No_case" : _x = x._0; - continue ; + continue; case "Alternative" : case "Intersection" : case "Complement" : @@ -1787,7 +1787,7 @@ function is_charset(_x) { return false; } _x = x._1; - continue ; + continue; default: return false; } @@ -1808,7 +1808,7 @@ function split(s, cm) { let match = t.hd; Curry._2(f, match[0], match[1]); _t = t.tl; - continue ; + continue; }; } @@ -1889,12 +1889,12 @@ function colorize(c, regexp) { case "No_group" : case "Nest" : _regexp = regexp._0; - continue ; + continue; case "Sem" : case "Sem_greedy" : case "Pmark" : _regexp = regexp._1; - continue ; + continue; default: throw { RE_EXN_ID: "Assert_failure", @@ -2036,7 +2036,7 @@ function equal$2(_x1, _x2) { } _x2 = x2._0; _x1 = x1._0; - continue ; + continue; case "Sem" : if (typeof x2 !== "object") { return false; @@ -2049,7 +2049,7 @@ function equal$2(_x1, _x2) { } _x2 = x2._1; _x1 = x1._1; - continue ; + continue; case "Sem_greedy" : if (typeof x2 !== "object") { return false; @@ -2062,7 +2062,7 @@ function equal$2(_x1, _x2) { } _x2 = x2._1; _x1 = x1._1; - continue ; + continue; case "Group" : return false; case "No_group" : @@ -2074,7 +2074,7 @@ function equal$2(_x1, _x2) { } _x2 = x2._0; _x1 = x1._0; - continue ; + continue; case "Nest" : if (typeof x2 !== "object") { return false; @@ -2084,7 +2084,7 @@ function equal$2(_x1, _x2) { } _x2 = x2._0; _x1 = x1._0; - continue ; + continue; case "Case" : if (typeof x2 !== "object") { return false; @@ -2094,7 +2094,7 @@ function equal$2(_x1, _x2) { } _x2 = x2._0; _x1 = x1._0; - continue ; + continue; case "No_case" : if (typeof x2 !== "object") { return false; @@ -2104,7 +2104,7 @@ function equal$2(_x1, _x2) { } _x2 = x2._0; _x1 = x1._0; - continue ; + continue; case "Intersection" : if (typeof x2 !== "object" || x2.TAG !== "Intersection") { return false; @@ -2129,7 +2129,7 @@ function equal$2(_x1, _x2) { } _x2 = x2._1; _x1 = x1._1; - continue ; + continue; case "Pmark" : if (typeof x2 !== "object") { return false; @@ -2142,7 +2142,7 @@ function equal$2(_x1, _x2) { } _x2 = x2._1; _x1 = x1._1; - continue ; + continue; } } @@ -2168,7 +2168,7 @@ function eq_list(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -2255,7 +2255,7 @@ function merge_sequences(_x) { break; case "Alternative" : _x = Pervasives.$at(l$p._0, x.tl); - continue ; + continue; default: } @@ -2465,12 +2465,12 @@ function translate(ids, kind, _ign_group, ign_case, _greedy, pos, cache, c, _x) case "Sem_greedy" : _x = x._1; _greedy = x._0; - continue ; + continue; case "Group" : let r$p = x._0; if (ign_group) { _x = r$p; - continue ; + continue; } let p = pos.contents; pos.contents = pos.contents + 2 | 0; @@ -2488,7 +2488,7 @@ function translate(ids, kind, _ign_group, ign_case, _greedy, pos, cache, c, _x) case "No_group" : _x = x._0; _ign_group = true; - continue ; + continue; case "Nest" : let b = pos.contents; let match$4 = translate(ids, kind, ign_group, ign_case, greedy, pos, cache, c, x._0); @@ -2680,11 +2680,11 @@ function handle_case(_ign_case, _x) { case "Case" : _x = x._0; _ign_case = false; - continue ; + continue; case "No_case" : _x = x._0; _ign_case = true; - continue ; + continue; case "Intersection" : let l$p$1 = List.map((function (r) { return handle_case(ign_case, r); @@ -2743,19 +2743,19 @@ function anchored(_x) { return false; } _x = x._0; - continue ; + continue; case "Group" : case "No_group" : case "Nest" : case "Case" : case "No_case" : _x = x._0; - continue ; + continue; case "Sem" : case "Sem_greedy" : case "Pmark" : _x = x._1; - continue ; + continue; default: return false; } @@ -3424,7 +3424,7 @@ function parse(multiline, dollar_endonly, dotall, ungreedy, s) { } i.contents = i.contents + 1 | 0; _param = undefined; - continue ; + continue; }; } throw { @@ -3684,7 +3684,7 @@ function parse(multiline, dollar_endonly, dotall, ungreedy, s) { }; } _i = i$p; - continue ; + continue; }; } }; @@ -4046,7 +4046,7 @@ function parse(multiline, dollar_endonly, dotall, ungreedy, s) { }, tl: s }; - continue ; + continue; } _s = { hd: { @@ -4055,13 +4055,13 @@ function parse(multiline, dollar_endonly, dotall, ungreedy, s) { }, tl: s }; - continue ; + continue; } _s = { hd: match.VAL, tl: s }; - continue ; + continue; }; }; let piece = function (param) { @@ -4108,7 +4108,7 @@ function parse(multiline, dollar_endonly, dotall, ungreedy, s) { hd: piece(), tl: left }; - continue ; + continue; }; }; let regexp$p = function (_left) { @@ -4124,7 +4124,7 @@ function parse(multiline, dollar_endonly, dotall, ungreedy, s) { tl: /* [] */0 } }); - continue ; + continue; }; }; let res = regexp$p(branch$p(/* [] */0)); diff --git a/jscomp/test/offset.js b/jscomp/test/offset.js index 0df3665c23..2c473968eb 100644 --- a/jscomp/test/offset.js +++ b/jscomp/test/offset.js @@ -180,7 +180,7 @@ function min_elt(_param) { return param.v; } _param = l; - continue ; + continue; }; } @@ -195,7 +195,7 @@ function min_elt_opt(_param) { return Caml_option.some(param.v); } _param = l; - continue ; + continue; }; } @@ -213,7 +213,7 @@ function max_elt(_param) { return param.v; } _param = r; - continue ; + continue; }; } @@ -228,7 +228,7 @@ function max_elt_opt(_param) { return Caml_option.some(param.v); } _param = r; - continue ; + continue; }; } @@ -312,7 +312,7 @@ function mem(x, _param) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -426,7 +426,7 @@ function cons_enum(_s, _e) { _2: e }; _s = s.l; - continue ; + continue; }; } @@ -452,7 +452,7 @@ function compare(s1, s2) { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; } @@ -482,7 +482,7 @@ function subset(_s1, _s2) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -495,7 +495,7 @@ function subset(_s1, _s2) { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -507,7 +507,7 @@ function subset(_s1, _s2) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -520,7 +520,7 @@ function iter(f, _param) { iter(f, param.l); Curry._1(f, param.v); _param = param.r; - continue ; + continue; }; } @@ -533,7 +533,7 @@ function fold(f, _s, _accu) { } _accu = Curry._2(f, s.v, fold(f, s.l, accu)); _s = s.r; - continue ; + continue; }; } @@ -550,7 +550,7 @@ function for_all(p, _param) { return false; } _param = param.r; - continue ; + continue; }; } @@ -567,7 +567,7 @@ function exists(p, _param) { return true; } _param = param.r; - continue ; + continue; }; } @@ -640,7 +640,7 @@ function elements_aux(_accu, _param) { hd: param.v, tl: elements_aux(accu, param.r) }; - continue ; + continue; }; } @@ -663,7 +663,7 @@ function find(x, _param) { return v; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -690,14 +690,14 @@ function find_first(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -721,14 +721,14 @@ function find_first_opt(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -755,14 +755,14 @@ function find_last(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -786,14 +786,14 @@ function find_last_opt(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -809,7 +809,7 @@ function find_opt(x, _param) { return Caml_option.some(v); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } diff --git a/jscomp/test/queue_402.js b/jscomp/test/queue_402.js index 48e522181b..20b12a4009 100644 --- a/jscomp/test/queue_402.js +++ b/jscomp/test/queue_402.js @@ -94,7 +94,7 @@ function copy(q) { prev.next = res; _cell = cell.next; _prev = res; - continue ; + continue; }; }; copy$1(tail$p, tail.next); @@ -125,7 +125,7 @@ function iter(f, q) { return; } _cell = cell.next; - continue ; + continue; }; } @@ -145,7 +145,7 @@ function fold(f, accu, q) { } _cell = cell.next; _accu = accu$2; - continue ; + continue; }; } diff --git a/jscomp/test/rbset.js b/jscomp/test/rbset.js index 28f57f121f..bee86f7c7f 100644 --- a/jscomp/test/rbset.js +++ b/jscomp/test/rbset.js @@ -42,10 +42,10 @@ function mem(x, _x_) { } if (x < y) { _x_ = x_._1; - continue ; + continue; } _x_ = x_._3; - continue ; + continue; }; } diff --git a/jscomp/test/reasonReactRouter.js b/jscomp/test/reasonReactRouter.js index 2773726ada..af82ab9612 100644 --- a/jscomp/test/reasonReactRouter.js +++ b/jscomp/test/reasonReactRouter.js @@ -41,7 +41,7 @@ function path(param) { tl: res }; _i = i - 1 | 0; - continue ; + continue; }; } } @@ -122,7 +122,7 @@ function urlNotEqual(a, b) { } _bList = bList.tl; _aList = aList.tl; - continue ; + continue; }; } } diff --git a/jscomp/test/rec_module_test.js b/jscomp/test/rec_module_test.js index f7a673aa64..f45e17a0fd 100644 --- a/jscomp/test/rec_module_test.js +++ b/jscomp/test/rec_module_test.js @@ -268,7 +268,7 @@ function min_elt(_param) { return param.v; } _param = l; - continue ; + continue; }; } @@ -283,7 +283,7 @@ function min_elt_opt(_param) { return Caml_option.some(param.v); } _param = l; - continue ; + continue; }; } @@ -301,7 +301,7 @@ function max_elt(_param) { return param.v; } _param = r; - continue ; + continue; }; } @@ -316,7 +316,7 @@ function max_elt_opt(_param) { return Caml_option.some(param.v); } _param = r; - continue ; + continue; }; } @@ -400,7 +400,7 @@ function mem(x, _param) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -514,7 +514,7 @@ function cons_enum(_s, _e) { _2: e }; _s = s.l; - continue ; + continue; }; } @@ -540,7 +540,7 @@ function compare$1(s1, s2) { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; } @@ -570,7 +570,7 @@ function subset(_s1, _s2) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -583,7 +583,7 @@ function subset(_s1, _s2) { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -595,7 +595,7 @@ function subset(_s1, _s2) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -608,7 +608,7 @@ function iter(f, _param) { iter(f, param.l); Curry._1(f, param.v); _param = param.r; - continue ; + continue; }; } @@ -621,7 +621,7 @@ function fold(f, _s, _accu) { } _accu = Curry._2(f, s.v, fold(f, s.l, accu)); _s = s.r; - continue ; + continue; }; } @@ -638,7 +638,7 @@ function for_all(p, _param) { return false; } _param = param.r; - continue ; + continue; }; } @@ -655,7 +655,7 @@ function exists(p, _param) { return true; } _param = param.r; - continue ; + continue; }; } @@ -728,7 +728,7 @@ function elements_aux(_accu, _param) { hd: param.v, tl: elements_aux(accu, param.r) }; - continue ; + continue; }; } @@ -751,7 +751,7 @@ function find(x, _param) { return v; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -778,14 +778,14 @@ function find_first(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -809,14 +809,14 @@ function find_first_opt(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -843,14 +843,14 @@ function find_last(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -874,14 +874,14 @@ function find_last_opt(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -897,7 +897,7 @@ function find_opt(x, _param) { return Caml_option.some(v); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } diff --git a/jscomp/test/set_gen.js b/jscomp/test/set_gen.js index 6e5c5904bd..7a5a7ee9a1 100644 --- a/jscomp/test/set_gen.js +++ b/jscomp/test/set_gen.js @@ -20,7 +20,7 @@ function cons_enum(_s, _e) { _2: e }; _s = s._0; - continue ; + continue; }; } @@ -46,7 +46,7 @@ function min_elt(_x) { return x._1; } _x = l; - continue ; + continue; }; } @@ -64,7 +64,7 @@ function max_elt(_x) { return x._1; } _x = r; - continue ; + continue; }; } @@ -85,7 +85,7 @@ function cardinal_aux(_acc, _x) { } _x = x._0; _acc = cardinal_aux(acc + 1 | 0, x._2); - continue ; + continue; }; } @@ -105,7 +105,7 @@ function elements_aux(_accu, _x) { hd: x._1, tl: elements_aux(accu, x._2) }; - continue ; + continue; }; } @@ -122,7 +122,7 @@ function iter(f, _x) { iter(f, x._0); Curry._1(f, x._1); _x = x._2; - continue ; + continue; }; } @@ -135,7 +135,7 @@ function fold(f, _s, _accu) { } _accu = Curry._2(f, s._1, fold(f, s._0, accu)); _s = s._2; - continue ; + continue; }; } @@ -152,7 +152,7 @@ function for_all(p, _x) { return false; } _x = x._2; - continue ; + continue; }; } @@ -169,7 +169,7 @@ function exists(p, _x) { return true; } _x = x._2; - continue ; + continue; }; } @@ -708,7 +708,7 @@ function compare_aux(cmp, _e1, _e2) { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; } diff --git a/jscomp/test/sexp.js b/jscomp/test/sexp.js index eadc66b2ac..7adebca675 100644 --- a/jscomp/test/sexp.js +++ b/jscomp/test/sexp.js @@ -179,7 +179,7 @@ function map_opt(f, l) { hd: Caml_option.valFromOption(y), tl: acc }; - continue ; + continue; }; } @@ -196,7 +196,7 @@ function list_any(f, e) { return res; } _l = l.tl; - continue ; + continue; }; } @@ -220,10 +220,10 @@ function list_all(f, e) { hd: Caml_option.valFromOption(y), tl: acc }; - continue ; + continue; } _l = tl; - continue ; + continue; }; } else { return /* [] */0; @@ -373,31 +373,31 @@ function get_field(name, e) { if (match$3) { if (match$3.tl) { _l = l.tl; - continue ; + continue; } if (Caml_obj.equal(name, match$2.VAL)) { return match$3.hd; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; }; } @@ -425,22 +425,22 @@ function _get_field_list(name, _l) { return match$1.tl; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; } _l = l.tl; - continue ; + continue; }; } @@ -462,7 +462,7 @@ function _get_variant(s, args, _l) { return Curry._1(match[1], args); } _l = l.tl; - continue ; + continue; }; } diff --git a/jscomp/test/sexpm.js b/jscomp/test/sexpm.js index 44ee8313cc..f0f5229c11 100644 --- a/jscomp/test/sexpm.js +++ b/jscomp/test/sexpm.js @@ -209,12 +209,12 @@ function expr(k, t) { if (c !== 32) { return expr_starting_with(c, k, t); } - continue ; + continue; } if (c < 9) { return expr_starting_with(c, k, t); } - continue ; + continue; }; } @@ -291,7 +291,7 @@ function expr_list(acc, k, t) { } } else if (c > 31 || c < 11) { - continue ; + continue; } return expr_starting_with(c, (function (last, e) { if (last !== undefined) { @@ -379,7 +379,7 @@ function atom(k, t) { switch (exit) { case 1 : $$Buffer.add_char(t.atom, c); - continue ; + continue; case 2 : return _return_atom(c, k, t); @@ -405,7 +405,7 @@ function quoted(k, t) { }), t); } $$Buffer.add_char(t.atom, c); - continue ; + continue; }; } @@ -505,7 +505,7 @@ function skip_comment(k, t) { if (match === 10) { return Curry._2(k, undefined, undefined); } - continue ; + continue; }; } @@ -523,12 +523,12 @@ function expr_or_end(k, t) { if (c !== 32) { return expr_starting_with(c, k, t); } - continue ; + continue; } if (c < 9) { return expr_starting_with(c, k, t); } - continue ; + continue; }; } diff --git a/jscomp/test/small_inline_test.js b/jscomp/test/small_inline_test.js index 26513a2848..f68a3a8a52 100644 --- a/jscomp/test/small_inline_test.js +++ b/jscomp/test/small_inline_test.js @@ -31,7 +31,7 @@ function f(_x) { while(true) { let x = _x; _x = x + 1 | 0; - continue ; + continue; }; } @@ -41,7 +41,7 @@ function ff(_x, _y) { let x = _x; _y = x + 1 | 0; _x = y; - continue ; + continue; }; } @@ -51,7 +51,7 @@ function fff(_x, _y) { let x = _x; _y = x; _x = y; - continue ; + continue; }; } diff --git a/jscomp/test/stream_parser_test.js b/jscomp/test/stream_parser_test.js index e32c999a95..da3cdec67b 100644 --- a/jscomp/test/stream_parser_test.js +++ b/jscomp/test/stream_parser_test.js @@ -172,10 +172,10 @@ function l_parse(token) { switch (t._0) { case "*" : _a = Math.imul(a, parse_f()); - continue ; + continue; case "/" : _a = Caml_int32.div(a, parse_f()); - continue ; + continue; default: Queue.push(t, look_ahead); return a; @@ -232,10 +232,10 @@ function l_parse(token) { switch (t._0) { case "+" : _a = a + parse_f_aux(parse_f()) | 0; - continue ; + continue; case "-" : _a = a - parse_f_aux(parse_f()) | 0; - continue ; + continue; default: Queue.push(t, look_ahead); return a; diff --git a/jscomp/test/string_set.js b/jscomp/test/string_set.js index 48ecbd3faa..4312560c40 100644 --- a/jscomp/test/string_set.js +++ b/jscomp/test/string_set.js @@ -139,7 +139,7 @@ function mem(x, _tree) { return true; } _tree = c < 0 ? tree._0 : tree._2; - continue ; + continue; }; } @@ -190,7 +190,7 @@ function subset(_s1, _s2) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -203,7 +203,7 @@ function subset(_s1, _s2) { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -215,7 +215,7 @@ function subset(_s1, _s2) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -234,7 +234,7 @@ function find(x, _tree) { return v; } _tree = c < 0 ? tree._0 : tree._2; - continue ; + continue; }; } diff --git a/jscomp/test/string_test.js b/jscomp/test/string_test.js index 552351a6e6..9fa548272c 100644 --- a/jscomp/test/string_test.js +++ b/jscomp/test/string_test.js @@ -115,7 +115,7 @@ function xsplit(delim, s) { }) : l$1; _x = i$p; _l = l$2; - continue ; + continue; }; } else { return /* [] */0; diff --git a/jscomp/test/tailcall_inline_test.js b/jscomp/test/tailcall_inline_test.js index 9ac0756033..6e1903a607 100644 --- a/jscomp/test/tailcall_inline_test.js +++ b/jscomp/test/tailcall_inline_test.js @@ -15,7 +15,7 @@ function f(param) { } _n = n - 1 | 0; _acc = acc + n | 0; - continue ; + continue; }; }; let v = Caml_array.make(10, 0); diff --git a/jscomp/test/test_ari.js b/jscomp/test/test_ari.js index 169d5d84e4..9d1825a3f5 100644 --- a/jscomp/test/test_ari.js +++ b/jscomp/test/test_ari.js @@ -41,7 +41,7 @@ function length_aux(_len, _x) { } _x = x.tl; _len = len + 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/test_cps.js b/jscomp/test/test_cps.js index d1f9dba439..cdcf252937 100644 --- a/jscomp/test/test_cps.js +++ b/jscomp/test/test_cps.js @@ -16,7 +16,7 @@ function f(_n, _acc) { return Curry._1(acc, undefined); }); _n = n - 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/test_fib.js b/jscomp/test/test_fib.js index e27b52e063..1b6c660c76 100644 --- a/jscomp/test/test_fib.js +++ b/jscomp/test/test_fib.js @@ -87,7 +87,7 @@ function fib3(n) { _n = n$1 - 1 | 0; _b = a + b | 0; _a = b; - continue ; + continue; }; } diff --git a/jscomp/test/test_for_map.js b/jscomp/test/test_for_map.js index 08063cd07a..412bbeffc6 100644 --- a/jscomp/test/test_for_map.js +++ b/jscomp/test/test_for_map.js @@ -168,7 +168,7 @@ function find(x, _param) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -201,14 +201,14 @@ function find_first(f, _param) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -238,14 +238,14 @@ function find_first_opt(f, _param) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -278,14 +278,14 @@ function find_last(f, _param) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -315,14 +315,14 @@ function find_last_opt(f, _param) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -337,7 +337,7 @@ function find_opt(x, _param) { return Caml_option.some(param.d); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -352,7 +352,7 @@ function mem(x, _param) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -373,7 +373,7 @@ function min_binding(_param) { ]; } _param = l; - continue ; + continue; }; } @@ -391,7 +391,7 @@ function min_binding_opt(_param) { ]; } _param = l; - continue ; + continue; }; } @@ -412,7 +412,7 @@ function max_binding(_param) { ]; } _param = r; - continue ; + continue; }; } @@ -430,7 +430,7 @@ function max_binding_opt(_param) { ]; } _param = r; - continue ; + continue; }; } @@ -554,7 +554,7 @@ function iter(f, _param) { iter(f, param.l); Curry._2(f, param.v, param.d); _param = param.r; - continue ; + continue; }; } @@ -602,7 +602,7 @@ function fold(f, _m, _accu) { } _accu = Curry._3(f, m.v, m.d, fold(f, m.l, accu)); _m = m.r; - continue ; + continue; }; } @@ -619,7 +619,7 @@ function for_all(p, _param) { return false; } _param = param.r; - continue ; + continue; }; } @@ -636,7 +636,7 @@ function exists(p, _param) { return true; } _param = param.r; - continue ; + continue; }; } @@ -858,7 +858,7 @@ function cons_enum(_m, _e) { _3: e }; _m = m.l; - continue ; + continue; }; } @@ -888,7 +888,7 @@ function compare(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -916,7 +916,7 @@ function equal(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -943,7 +943,7 @@ function bindings_aux(_accu, _param) { ], tl: bindings_aux(accu, param.r) }; - continue ; + continue; }; } diff --git a/jscomp/test/test_list.js b/jscomp/test/test_list.js index 672586cfc8..ff8fa1228f 100644 --- a/jscomp/test/test_list.js +++ b/jscomp/test/test_list.js @@ -15,7 +15,7 @@ function length_aux(_len, _x) { } _x = x.tl; _len = len + 1 | 0; - continue ; + continue; }; } @@ -64,7 +64,7 @@ function nth(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Failure", @@ -86,7 +86,7 @@ function rev_append(_l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -142,7 +142,7 @@ function rev_map(f, l) { hd: Curry._1(f, x.hd), tl: accu }; - continue ; + continue; }; } @@ -154,7 +154,7 @@ function iter(f, _x) { } Curry._1(f, x.hd); _x = x.tl; - continue ; + continue; }; } @@ -170,7 +170,7 @@ function iteri(f, l) { Curry._2(f, i, x.hd); _x = x.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -183,7 +183,7 @@ function fold_left(f, _accu, _l) { } _l = l.tl; _accu = Curry._2(f, accu, l.hd); - continue ; + continue; }; } @@ -236,7 +236,7 @@ function rev_map2(f, l1, l2) { hd: Curry._2(f, l1$1.hd, l2$1.hd), tl: accu }; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -264,7 +264,7 @@ function iter2(f, _l1, _l2) { Curry._2(f, l1.hd, l2.hd); _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -293,7 +293,7 @@ function fold_left2(f, _accu, _l1, _l2) { _l2 = l2.tl; _l1 = l1.tl; _accu = Curry._3(f, accu, l1.hd, l2.hd); - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -343,7 +343,7 @@ function for_all(p, _x) { return false; } _x = x.tl; - continue ; + continue; }; } @@ -357,7 +357,7 @@ function exists(p, _x) { return true; } _x = x.tl; - continue ; + continue; }; } @@ -372,7 +372,7 @@ function for_all2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -402,7 +402,7 @@ function exists2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -431,7 +431,7 @@ function mem(x, _x_) { return true; } _x_ = x_.tl; - continue ; + continue; }; } @@ -445,7 +445,7 @@ function memq(x, _x_) { return true; } _x_ = x_.tl; - continue ; + continue; }; } @@ -458,7 +458,7 @@ function assoc(x, _x_) { return match[1]; } _x_ = x_.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -476,7 +476,7 @@ function assq(x, _x_) { return match[1]; } _x_ = x_.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -495,7 +495,7 @@ function mem_assoc(x, _x_) { return true; } _x_ = x_.tl; - continue ; + continue; }; } @@ -509,7 +509,7 @@ function mem_assq(x, _x_) { return true; } _x_ = x_.tl; - continue ; + continue; }; } @@ -554,7 +554,7 @@ function find(p, _x) { return x$1; } _x = x.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -581,10 +581,10 @@ function find_all(p) { hd: x$1, tl: accu }; - continue ; + continue; } _x = l; - continue ; + continue; }; }; } @@ -611,14 +611,14 @@ function partition(p, l) { hd: x$1, tl: yes }; - continue ; + continue; } _x = l$1; _no = { hd: x$1, tl: no }; - continue ; + continue; }; } @@ -702,7 +702,7 @@ function chop(_k, _l) { if (l) { _l = l.tl; _k = k - 1 | 0; - continue ; + continue; } throw { RE_EXN_ID: "Assert_failure", @@ -853,14 +853,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -999,14 +999,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let len = length_aux(0, l); @@ -1231,7 +1231,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 > 0) { _accu = { @@ -1239,14 +1239,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -1462,7 +1462,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 < 0) { _accu = { @@ -1470,14 +1470,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let len = length_aux(0, l); diff --git a/jscomp/test/test_order_tailcall.js b/jscomp/test/test_order_tailcall.js index 62e9bae434..89884b4dc3 100644 --- a/jscomp/test/test_order_tailcall.js +++ b/jscomp/test/test_order_tailcall.js @@ -8,7 +8,7 @@ function f(_x, _y) { let x = _x; _y = x; _x = y; - continue ; + continue; }; } @@ -21,7 +21,7 @@ function f1(_x, _y, _z) { _z = x; _y = z; _x = y; - continue ; + continue; }; } @@ -29,7 +29,7 @@ function f2(x, _y) { while(true) { let y = _y; _y = y + 10 | 0; - continue ; + continue; }; } @@ -39,7 +39,7 @@ function f3(_x, _y) { let x = _x; _y = x + 10 | 0; _x = y; - continue ; + continue; }; } @@ -49,7 +49,7 @@ function f4(_x, _y) { let x = _x; _y = y + x | 0; _x = x + 10 | 0; - continue ; + continue; }; } @@ -58,7 +58,7 @@ function f5(_x, _y, z) { let y = _y; _y = z + 20 | 0; _x = y + 10 | 0; - continue ; + continue; }; } @@ -67,7 +67,7 @@ function f6(b) { if (!b) { return false; } - continue ; + continue; }; } @@ -76,7 +76,7 @@ function f7(b) { if (b) { return true; } - continue ; + continue; }; } @@ -86,17 +86,17 @@ function f8(_x, _y) { let x = _x; if (x > 10) { _y = y + 1 | 0; - continue ; + continue; } if (x < 5) { _x = x - 1 | 0; - continue ; + continue; } if (x <= 6) { return f8(x, y + 1 | 0) + f8(x - 1 | 0, y) | 0; } _x = x - 2 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/test_per.js b/jscomp/test/test_per.js index 9153b2e78c..eea7e8956d 100644 --- a/jscomp/test/test_per.js +++ b/jscomp/test/test_per.js @@ -155,13 +155,13 @@ function valid_float_lexem(s) { return s; } _i = i + 1 | 0; - continue ; + continue; } if (match !== 45) { return s; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -230,7 +230,7 @@ function flush_all(param) { } _x = x.tl; - continue ; + continue; }; } @@ -339,7 +339,7 @@ function unsafe_really_input(ic, s, _ofs, _len) { } _len = len - r | 0; _ofs = ofs + r | 0; - continue ; + continue; }; } @@ -373,7 +373,7 @@ function input_line(chan) { Caml_external_polyfill.resolve("blit_string")(hd, 0, buf, pos - len | 0, len); _x = x.tl; _pos = pos - len | 0; - continue ; + continue; }; }; let _accu = /* [] */0; @@ -411,7 +411,7 @@ function input_line(chan) { hd: beg, tl: accu }; - continue ; + continue; }; } diff --git a/jscomp/test/test_seq.js b/jscomp/test/test_seq.js index 7ce1b8015b..ab66be50ac 100644 --- a/jscomp/test/test_seq.js +++ b/jscomp/test/test_seq.js @@ -22,7 +22,7 @@ function assoc3(x, _l) { return match[1]; } _l = l.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", diff --git a/jscomp/test/test_set.js b/jscomp/test/test_set.js index 146772a8d6..228e5faf1b 100644 --- a/jscomp/test/test_set.js +++ b/jscomp/test/test_set.js @@ -160,7 +160,7 @@ function Make(Ord) { return x._1; } _x = l; - continue ; + continue; }; }; let max_elt = function (_x) { @@ -177,7 +177,7 @@ function Make(Ord) { return x._1; } _x = r; - continue ; + continue; }; }; let remove_min_elt = function (x) { @@ -265,7 +265,7 @@ function Make(Ord) { return true; } _x_ = c < 0 ? x_._0 : x_._2; - continue ; + continue; }; }; let remove = function (x, x_) { @@ -358,7 +358,7 @@ function Make(Ord) { _2: e }; _s = s._0; - continue ; + continue; }; }; let compare_aux = function (_e1, _e2) { @@ -381,7 +381,7 @@ function Make(Ord) { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; }; let compare = function (s1, s2) { @@ -412,7 +412,7 @@ function Make(Ord) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -425,7 +425,7 @@ function Make(Ord) { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -437,7 +437,7 @@ function Make(Ord) { return false; } _s1 = l1; - continue ; + continue; }; }; let iter = function (f, _x_) { @@ -449,7 +449,7 @@ function Make(Ord) { iter(f, x_._0); Curry._1(f, x_._1); _x_ = x_._2; - continue ; + continue; }; }; let fold = function (f, _s, _accu) { @@ -461,7 +461,7 @@ function Make(Ord) { } _accu = Curry._2(f, s._1, fold(f, s._0, accu)); _s = s._2; - continue ; + continue; }; }; let for_all = function (p, _x) { @@ -477,7 +477,7 @@ function Make(Ord) { return false; } _x = x._2; - continue ; + continue; }; }; let exists = function (p, _x) { @@ -493,7 +493,7 @@ function Make(Ord) { return true; } _x = x._2; - continue ; + continue; }; }; let filter = function (p, x) { @@ -556,7 +556,7 @@ function Make(Ord) { hd: x._1, tl: elements_aux(accu, x._2) }; - continue ; + continue; }; }; let elements = function (s) { @@ -577,7 +577,7 @@ function Make(Ord) { return v; } _x_ = c < 0 ? x_._0 : x_._2; - continue ; + continue; }; }; let of_sorted_list = function (l) { diff --git a/jscomp/test/test_simple_tailcall.js b/jscomp/test/test_simple_tailcall.js index 6e67dc74de..1fd893e906 100644 --- a/jscomp/test/test_simple_tailcall.js +++ b/jscomp/test/test_simple_tailcall.js @@ -4,7 +4,7 @@ function tailcall(x) { while(true) { - continue ; + continue; }; } @@ -29,7 +29,7 @@ function length(_acc, _x) { } _x = tl; _acc = acc + 1 | 0; - continue ; + continue; }; } diff --git a/jscomp/test/test_string_map.js b/jscomp/test/test_string_map.js index 6c86bf2790..2269d68a88 100644 --- a/jscomp/test/test_string_map.js +++ b/jscomp/test/test_string_map.js @@ -148,7 +148,7 @@ function find(x, _param) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } diff --git a/jscomp/test/ticker.js b/jscomp/test/ticker.js index 28e221c62f..f88ffd9902 100644 --- a/jscomp/test/ticker.js +++ b/jscomp/test/ticker.js @@ -47,7 +47,7 @@ function split(delim, s) { }) : l$1; _x = i$p; _l = l$2; - continue ; + continue; }; } else { return /* [] */0; @@ -258,7 +258,7 @@ function find(x, _param) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -291,14 +291,14 @@ function find_first(f, _param) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -328,14 +328,14 @@ function find_first_opt(f, _param) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -368,14 +368,14 @@ function find_last(f, _param) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -405,14 +405,14 @@ function find_last_opt(f, _param) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -427,7 +427,7 @@ function find_opt(x, _param) { return Caml_option.some(param.d); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -442,7 +442,7 @@ function mem(x, _param) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -463,7 +463,7 @@ function min_binding(_param) { ]; } _param = l; - continue ; + continue; }; } @@ -481,7 +481,7 @@ function min_binding_opt(_param) { ]; } _param = l; - continue ; + continue; }; } @@ -502,7 +502,7 @@ function max_binding(_param) { ]; } _param = r; - continue ; + continue; }; } @@ -520,7 +520,7 @@ function max_binding_opt(_param) { ]; } _param = r; - continue ; + continue; }; } @@ -644,7 +644,7 @@ function iter(f, _param) { iter(f, param.l); Curry._2(f, param.v, param.d); _param = param.r; - continue ; + continue; }; } @@ -692,7 +692,7 @@ function fold(f, _m, _accu) { } _accu = Curry._3(f, m.v, m.d, fold(f, m.l, accu)); _m = m.r; - continue ; + continue; }; } @@ -709,7 +709,7 @@ function for_all(p, _param) { return false; } _param = param.r; - continue ; + continue; }; } @@ -726,7 +726,7 @@ function exists(p, _param) { return true; } _param = param.r; - continue ; + continue; }; } @@ -948,7 +948,7 @@ function cons_enum(_m, _e) { _3: e }; _m = m.l; - continue ; + continue; }; } @@ -978,7 +978,7 @@ function compare(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -1006,7 +1006,7 @@ function equal(cmp, m1, m2) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; } @@ -1033,7 +1033,7 @@ function bindings_aux(_accu, _param) { ], tl: bindings_aux(accu, param.r) }; - continue ; + continue; }; } @@ -1140,7 +1140,7 @@ function compute_update_sequences(all_tickers) { hd: ticker, tl: up }; - continue ; + continue; }; }; return loop(/* [] */0, map, ticker); @@ -1397,7 +1397,7 @@ function loop(_lines, _param) { } _param = process_input_line(param[1], all_tickers, lines.hd); _lines = lines.tl; - continue ; + continue; }; } diff --git a/jscomp/test/topsort_test.js b/jscomp/test/topsort_test.js index 3209382efe..62a8e462f0 100644 --- a/jscomp/test/topsort_test.js +++ b/jscomp/test/topsort_test.js @@ -85,7 +85,7 @@ function dfs1(_nodes, graph, _visited) { let x = nodes.hd; if (List.mem(x, visited)) { _nodes = xs; - continue ; + continue; } console.log(x); _visited = { @@ -93,7 +93,7 @@ function dfs1(_nodes, graph, _visited) { tl: visited }; _nodes = Pervasives.$at(nexts(x, graph), xs); - continue ; + continue; }; } @@ -183,14 +183,14 @@ function dfs2(nodes, graph, visited) { let x = nodes.hd; if (List.mem(x, visited)) { _nodes = xs; - continue ; + continue; } _visited = aux(nexts(x, graph), graph, { hd: x, tl: visited }); _nodes = xs; - continue ; + continue; }; }; return List.rev(aux(nodes, graph, visited)); @@ -624,7 +624,7 @@ function min_elt(_param) { return param.v; } _param = l; - continue ; + continue; }; } @@ -639,7 +639,7 @@ function min_elt_opt(_param) { return Caml_option.some(param.v); } _param = l; - continue ; + continue; }; } @@ -657,7 +657,7 @@ function max_elt(_param) { return param.v; } _param = r; - continue ; + continue; }; } @@ -672,7 +672,7 @@ function max_elt_opt(_param) { return Caml_option.some(param.v); } _param = r; - continue ; + continue; }; } @@ -756,7 +756,7 @@ function mem(x, _param) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -870,7 +870,7 @@ function cons_enum(_s, _e) { _2: e }; _s = s.l; - continue ; + continue; }; } @@ -896,7 +896,7 @@ function compare(s1, s2) { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; } @@ -926,7 +926,7 @@ function subset(_s1, _s2) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -939,7 +939,7 @@ function subset(_s1, _s2) { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -951,7 +951,7 @@ function subset(_s1, _s2) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -964,7 +964,7 @@ function iter(f, _param) { iter(f, param.l); Curry._1(f, param.v); _param = param.r; - continue ; + continue; }; } @@ -977,7 +977,7 @@ function fold(f, _s, _accu) { } _accu = Curry._2(f, s.v, fold(f, s.l, accu)); _s = s.r; - continue ; + continue; }; } @@ -994,7 +994,7 @@ function for_all(p, _param) { return false; } _param = param.r; - continue ; + continue; }; } @@ -1011,7 +1011,7 @@ function exists(p, _param) { return true; } _param = param.r; - continue ; + continue; }; } @@ -1084,7 +1084,7 @@ function elements_aux(_accu, _param) { hd: param.v, tl: elements_aux(accu, param.r) }; - continue ; + continue; }; } @@ -1107,7 +1107,7 @@ function find(x, _param) { return v; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } @@ -1134,14 +1134,14 @@ function find_first(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -1165,14 +1165,14 @@ function find_first_opt(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; } @@ -1199,14 +1199,14 @@ function find_last(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -1230,14 +1230,14 @@ function find_last_opt(f, _param) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; } @@ -1253,7 +1253,7 @@ function find_opt(x, _param) { return Caml_option.some(v); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; } diff --git a/jscomp/test/tramp_fib.js b/jscomp/test/tramp_fib.js index f19c8cc038..be13bb677f 100644 --- a/jscomp/test/tramp_fib.js +++ b/jscomp/test/tramp_fib.js @@ -46,7 +46,7 @@ function iter(_bounce) { return bounce._0; } _bounce = bounce._0(); - continue ; + continue; }; } diff --git a/jscomp/test/uncurry_test.js b/jscomp/test/uncurry_test.js index 844a4a9e23..80632c7bcc 100644 --- a/jscomp/test/uncurry_test.js +++ b/jscomp/test/uncurry_test.js @@ -29,7 +29,7 @@ console.log([ function xx() { while(true) { _param = undefined; - continue ; + continue; }; } diff --git a/jscomp/test/unsafe_full_apply_primitive.js b/jscomp/test/unsafe_full_apply_primitive.js index 49880f31f9..c03ed3147e 100644 --- a/jscomp/test/unsafe_full_apply_primitive.js +++ b/jscomp/test/unsafe_full_apply_primitive.js @@ -4,7 +4,7 @@ function f(a) { while(true) { - continue ; + continue; }; } diff --git a/lib/es6/arg.js b/lib/es6/arg.js index 090c82baee..b5c460e74f 100644 --- a/lib/es6/arg.js +++ b/lib/es6/arg.js @@ -30,7 +30,7 @@ function assoc3(x, _l) { return match[1]; } _l = l.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -592,7 +592,7 @@ function second_word(s) { return n; } _n = n + 1 | 0; - continue ; + continue; }; }; let n; diff --git a/lib/es6/array.js b/lib/es6/array.js index 046ce2c381..abb2a612f5 100644 --- a/lib/es6/array.js +++ b/lib/es6/array.js @@ -174,7 +174,7 @@ function to_list(a) { tl: res }; _i = i - 1 | 0; - continue ; + continue; }; } @@ -187,7 +187,7 @@ function list_length(_accu, _param) { } _param = param.tl; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -207,7 +207,7 @@ function of_list(param) { a[i] = param$1.hd; _param = param$1.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -239,7 +239,7 @@ function exists(p, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -255,7 +255,7 @@ function for_all(p, a) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -271,7 +271,7 @@ function mem(x, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -287,7 +287,7 @@ function memq(x, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -329,7 +329,7 @@ function sort(cmp, a) { } Caml_array.set(a, i$1, Caml_array.get(a, j)); _i = j; - continue ; + continue; }; } catch (raw_i){ @@ -348,7 +348,7 @@ function sort(cmp, a) { let j = maxson(l, i$1); Caml_array.set(a, i$1, Caml_array.get(a, j)); _i = j; - continue ; + continue; }; } catch (raw_i){ @@ -382,7 +382,7 @@ function sort(cmp, a) { return Caml_array.set(a, 0, e); } _i = father; - continue ; + continue; }; }; let l = a.length; @@ -426,7 +426,7 @@ function stable_sort(cmp, a) { _d = d + 1 | 0; _s1 = Caml_array.get(a, i1$1); _i1 = i1$1; - continue ; + continue; } Caml_array.set(dst, d, s2); let i2$1 = i2 + 1 | 0; @@ -436,7 +436,7 @@ function stable_sort(cmp, a) { _d = d + 1 | 0; _s2 = Caml_array.get(src2, i2$1); _i2 = i2$1; - continue ; + continue; }; }; let isortto = function (srcofs, dst, dstofs, len) { diff --git a/lib/es6/arrayLabels.js b/lib/es6/arrayLabels.js index b15c310a39..f1fcbfed7e 100644 --- a/lib/es6/arrayLabels.js +++ b/lib/es6/arrayLabels.js @@ -174,7 +174,7 @@ function to_list(a) { tl: res }; _i = i - 1 | 0; - continue ; + continue; }; } @@ -187,7 +187,7 @@ function list_length(_accu, _param) { } _param = param.tl; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -207,7 +207,7 @@ function of_list(param) { a[i] = param$1.hd; _param = param$1.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -239,7 +239,7 @@ function exists(p, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -255,7 +255,7 @@ function for_all(p, a) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -271,7 +271,7 @@ function mem(x, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -287,7 +287,7 @@ function memq(x, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -329,7 +329,7 @@ function sort(cmp, a) { } Caml_array.set(a, i$1, Caml_array.get(a, j)); _i = j; - continue ; + continue; }; } catch (raw_i){ @@ -348,7 +348,7 @@ function sort(cmp, a) { let j = maxson(l, i$1); Caml_array.set(a, i$1, Caml_array.get(a, j)); _i = j; - continue ; + continue; }; } catch (raw_i){ @@ -382,7 +382,7 @@ function sort(cmp, a) { return Caml_array.set(a, 0, e); } _i = father; - continue ; + continue; }; }; let l = a.length; @@ -426,7 +426,7 @@ function stable_sort(cmp, a) { _d = d + 1 | 0; _s1 = Caml_array.get(a, i1$1); _i1 = i1$1; - continue ; + continue; } Caml_array.set(dst, d, s2); let i2$1 = i2 + 1 | 0; @@ -436,7 +436,7 @@ function stable_sort(cmp, a) { _d = d + 1 | 0; _s2 = Caml_array.get(src2, i2$1); _i2 = i2$1; - continue ; + continue; }; }; let isortto = function (srcofs, dst, dstofs, len) { diff --git a/lib/es6/belt_Array.js b/lib/es6/belt_Array.js index 6afe4cb1ed..8e0ca501cb 100644 --- a/lib/es6/belt_Array.js +++ b/lib/es6/belt_Array.js @@ -496,7 +496,7 @@ function everyU(arr, b) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -516,7 +516,7 @@ function someU(arr, b) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -534,7 +534,7 @@ function everyAux2(arr1, arr2, _i, b, len) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -558,7 +558,7 @@ function some2U(a, b, p) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -599,7 +599,7 @@ function cmpU(a, b, p) { return c; } _i = i + 1 | 0; - continue ; + continue; }; } } @@ -667,7 +667,7 @@ function joinWithU(a, sep, toString) { } _res = res + (toString(a[i]) + sep); _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/belt_HashMap.js b/lib/es6/belt_HashMap.js index 087cfc52cd..abefcddf27 100644 --- a/lib/es6/belt_HashMap.js +++ b/lib/es6/belt_HashMap.js @@ -23,7 +23,7 @@ function copyBucketReHash(hash, h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -39,7 +39,7 @@ function replaceInBucket(eq, key, info, _cell) { return true; } _cell = cell$1; - continue ; + continue; }; } @@ -124,7 +124,7 @@ function remove(h, key) { } _bucket = cell_next; _prec = bucket$1; - continue ; + continue; }; } } @@ -162,7 +162,7 @@ function get(h, key) { return Caml_option.some(buckets.value); } _buckets = buckets.next; - continue ; + continue; }; } } @@ -186,7 +186,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/es6/belt_HashMapInt.js b/lib/es6/belt_HashMapInt.js index 328b78ee94..2d1d6c8537 100644 --- a/lib/es6/belt_HashMapInt.js +++ b/lib/es6/belt_HashMapInt.js @@ -20,7 +20,7 @@ function copyBucketReHash(h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -36,7 +36,7 @@ function replaceInBucket(key, info, _cell) { return true; } _cell = cell$1; - continue ; + continue; }; } @@ -114,7 +114,7 @@ function remove(h, key) { } _buckets = cell_next; _prec = buckets; - continue ; + continue; }; } } @@ -153,7 +153,7 @@ function get(h, key) { return Caml_option.some(buckets.value); } _buckets = buckets.next; - continue ; + continue; }; } } @@ -176,7 +176,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/es6/belt_HashMapString.js b/lib/es6/belt_HashMapString.js index 1c330f45f3..c4352164cb 100644 --- a/lib/es6/belt_HashMapString.js +++ b/lib/es6/belt_HashMapString.js @@ -20,7 +20,7 @@ function copyBucketReHash(h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -36,7 +36,7 @@ function replaceInBucket(key, info, _cell) { return true; } _cell = cell$1; - continue ; + continue; }; } @@ -114,7 +114,7 @@ function remove(h, key) { } _buckets = cell_next; _prec = buckets; - continue ; + continue; }; } } @@ -153,7 +153,7 @@ function get(h, key) { return Caml_option.some(buckets.value); } _buckets = buckets.next; - continue ; + continue; }; } } @@ -176,7 +176,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/es6/belt_HashSet.js b/lib/es6/belt_HashSet.js index 8fc92a3699..78a9a88609 100644 --- a/lib/es6/belt_HashSet.js +++ b/lib/es6/belt_HashSet.js @@ -18,7 +18,7 @@ function copyBucket(hash, h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -52,7 +52,7 @@ function remove(h, key) { } _cell = cell_next; _prec = cell; - continue ; + continue; }; } else { return; @@ -68,7 +68,7 @@ function addBucket(h, key, _cell, eq) { let n = cell.next; if (n !== undefined) { _cell = n; - continue ; + continue; } h.size = h.size + 1 | 0; cell.next = { @@ -139,7 +139,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/es6/belt_HashSetInt.js b/lib/es6/belt_HashSetInt.js index 9327ed7dca..af39562572 100644 --- a/lib/es6/belt_HashSetInt.js +++ b/lib/es6/belt_HashSetInt.js @@ -19,7 +19,7 @@ function copyBucket(h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -52,7 +52,7 @@ function remove(h, key) { } _cell = cell_next; _prec = cell; - continue ; + continue; }; } else { return; @@ -68,7 +68,7 @@ function addBucket(h, key, _cell) { let n = cell.next; if (n !== undefined) { _cell = n; - continue ; + continue; } h.size = h.size + 1 | 0; cell.next = { @@ -134,7 +134,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/es6/belt_HashSetString.js b/lib/es6/belt_HashSetString.js index 7b1a191571..0393ba380f 100644 --- a/lib/es6/belt_HashSetString.js +++ b/lib/es6/belt_HashSetString.js @@ -19,7 +19,7 @@ function copyBucket(h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -52,7 +52,7 @@ function remove(h, key) { } _cell = cell_next; _prec = cell; - continue ; + continue; }; } else { return; @@ -68,7 +68,7 @@ function addBucket(h, key, _cell) { let n = cell.next; if (n !== undefined) { _cell = n; - continue ; + continue; } h.size = h.size + 1 | 0; cell.next = { @@ -134,7 +134,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/es6/belt_List.js b/lib/es6/belt_List.js index 007080139b..888b61b2ab 100644 --- a/lib/es6/belt_List.js +++ b/lib/es6/belt_List.js @@ -63,7 +63,7 @@ function get(x, n) { } _n = n$1 - 1 | 0; _x = x$1.tl; - continue ; + continue; }; } } @@ -86,7 +86,7 @@ function getExn(x, n) { } _n = n$1 - 1 | 0; _x = x$1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -113,12 +113,12 @@ function partitionAux(p, _cell, _precX, _precY) { precX.tl = next; _precX = next; _cell = t; - continue ; + continue; } precY.tl = next; _precY = next; _cell = t; - continue ; + continue; }; } @@ -144,7 +144,7 @@ function splitAux(_cell, _precX, _precY) { _precY = nextB; _precX = nextA; _cell = cell.tl; - continue ; + continue; }; } @@ -162,7 +162,7 @@ function copyAuxCont(_cellX, _prec) { prec.tl = next; _prec = next; _cellX = cellX.tl; - continue ; + continue; }; } @@ -183,10 +183,10 @@ function copyAuxWitFilter(f, _cellX, _prec) { prec.tl = next; _prec = next; _cellX = t; - continue ; + continue; } _cellX = t; - continue ; + continue; }; } @@ -209,11 +209,11 @@ function copyAuxWithFilterIndex(f, _cellX, _prec, _i) { _i = i + 1 | 0; _prec = next; _cellX = t; - continue ; + continue; } _i = i + 1 | 0; _cellX = t; - continue ; + continue; }; } @@ -234,10 +234,10 @@ function copyAuxWitFilterMap(f, _cellX, _prec) { prec.tl = next; _prec = next; _cellX = t; - continue ; + continue; } _cellX = t; - continue ; + continue; }; } @@ -261,7 +261,7 @@ function removeAssocAuxWithMap(_cellX, x, _prec, f) { prec.tl = next; _prec = next; _cellX = t; - continue ; + continue; }; } @@ -291,7 +291,7 @@ function setAssocAuxWithMap(_cellX, x, k, _prec, eq) { prec.tl = next; _prec = next; _cellX = t; - continue ; + continue; }; } @@ -309,7 +309,7 @@ function copyAuxWithMap(_cellX, _prec, f) { prec.tl = next; _prec = next; _cellX = cellX.tl; - continue ; + continue; }; } @@ -335,7 +335,7 @@ function zipAux(_cellX, _cellY, _prec) { _prec = next; _cellY = cellY.tl; _cellX = cellX.tl; - continue ; + continue; }; } @@ -358,7 +358,7 @@ function copyAuxWithMap2(f, _cellX, _cellY, _prec) { _prec = next; _cellY = cellY.tl; _cellX = cellX.tl; - continue ; + continue; }; } @@ -378,7 +378,7 @@ function copyAuxWithMapI(f, _i, _cellX, _prec) { _prec = next; _cellX = cellX.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -401,7 +401,7 @@ function takeAux(_n, _cell, _prec) { _prec = cell$1; _cell = cell.tl; _n = n - 1 | 0; - continue ; + continue; }; } @@ -424,7 +424,7 @@ function splitAtAux(_n, _cell, _prec) { _prec = cell$1; _cell = cell.tl; _n = n - 1 | 0; - continue ; + continue; }; } @@ -466,7 +466,7 @@ function drop(lst, n) { } _n = n$1 - 1 | 0; _l = l.tl; - continue ; + continue; }; } } @@ -620,7 +620,7 @@ function length(xs) { } _acc = acc + 1 | 0; _x = x.tl; - continue ; + continue; }; } @@ -634,7 +634,7 @@ function fillAux(arr, _i, _x) { arr[i] = x.hd; _x = x.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -652,7 +652,7 @@ function fromArray(a) { tl: res }; _i = i - 1 | 0; - continue ; + continue; }; } @@ -681,7 +681,7 @@ function reverseConcat(_l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -696,7 +696,7 @@ function flattenAux(_prec, _xs) { if (xs) { _xs = xs.tl; _prec = copyAuxCont(xs.hd, prec); - continue ; + continue; } prec.tl = /* [] */0; return; @@ -719,7 +719,7 @@ function flatten(_xs) { return cell; } _xs = xs.tl; - continue ; + continue; }; } @@ -753,7 +753,7 @@ function mapReverseU(l, f) { hd: f(xs.hd), tl: accu }; - continue ; + continue; }; } @@ -769,7 +769,7 @@ function forEachU(_xs, f) { } f(xs.hd); _xs = xs.tl; - continue ; + continue; }; } @@ -789,7 +789,7 @@ function forEachWithIndexU(l, f) { f(i, xs.hd); _i = i + 1 | 0; _xs = xs.tl; - continue ; + continue; }; } @@ -806,7 +806,7 @@ function reduceU(_l, _accu, f) { } _accu = f(accu, l.hd); _l = l.tl; - continue ; + continue; }; } @@ -849,7 +849,7 @@ function reduceWithIndexU(l, acc, f) { _i = i + 1 | 0; _acc = f(acc$1, l$1.hd, i); _l = l$1.tl; - continue ; + continue; }; } @@ -877,7 +877,7 @@ function mapReverse2U(l1, l2, f) { }; _l2 = l2$1.tl; _l1 = l1$1.tl; - continue ; + continue; }; } @@ -898,7 +898,7 @@ function forEach2U(_l1, _l2, f) { f(l1.hd, l2.hd); _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -920,7 +920,7 @@ function reduce2U(_l1, _l2, _accu, f) { _accu = f(accu, l1.hd, l2.hd); _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -959,7 +959,7 @@ function everyU(_xs, p) { return false; } _xs = xs.tl; - continue ; + continue; }; } @@ -977,7 +977,7 @@ function someU(_xs, p) { return true; } _xs = xs.tl; - continue ; + continue; }; } @@ -1000,7 +1000,7 @@ function every2U(_l1, _l2, p) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1024,7 +1024,7 @@ function cmpByLength(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1048,7 +1048,7 @@ function cmpU(_l1, _l2, p) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1075,7 +1075,7 @@ function eqU(_l1, _l2, p) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1098,7 +1098,7 @@ function some2U(_l1, _l2, p) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1116,7 +1116,7 @@ function hasU(_xs, x, eq) { return true; } _xs = xs.tl; - continue ; + continue; }; } @@ -1135,7 +1135,7 @@ function getAssocU(_xs, x, eq) { return Caml_option.some(match[1]); } _xs = xs.tl; - continue ; + continue; }; } @@ -1153,7 +1153,7 @@ function hasAssocU(_xs, x, eq) { return true; } _xs = xs.tl; - continue ; + continue; }; } @@ -1250,7 +1250,7 @@ function getByU(_xs, p) { return Caml_option.some(x); } _xs = xs.tl; - continue ; + continue; }; } @@ -1275,7 +1275,7 @@ function keepU(_xs, p) { return cell; } _xs = t; - continue ; + continue; }; } @@ -1304,7 +1304,7 @@ function keepWithIndexU(xs, p) { } _i = i + 1 | 0; _xs = t; - continue ; + continue; }; } @@ -1329,7 +1329,7 @@ function keepMapU(_xs, p) { return cell; } _xs = t; - continue ; + continue; }; } diff --git a/lib/es6/belt_MapDict.js b/lib/es6/belt_MapDict.js index 364e0217bf..c2fa88f3c7 100644 --- a/lib/es6/belt_MapDict.js +++ b/lib/es6/belt_MapDict.js @@ -265,7 +265,7 @@ function removeMany(t, keys, cmp) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/es6/belt_MapInt.js b/lib/es6/belt_MapInt.js index e616d3cd84..69c1a3dbc5 100644 --- a/lib/es6/belt_MapInt.js +++ b/lib/es6/belt_MapInt.js @@ -139,7 +139,7 @@ function removeMany(t, keys) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/es6/belt_MapString.js b/lib/es6/belt_MapString.js index 88b9478f7d..d2201ef572 100644 --- a/lib/es6/belt_MapString.js +++ b/lib/es6/belt_MapString.js @@ -139,7 +139,7 @@ function removeMany(t, keys) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/es6/belt_MutableMap.js b/lib/es6/belt_MutableMap.js index 0e2363f2ee..1c88e14fc3 100644 --- a/lib/es6/belt_MutableMap.js +++ b/lib/es6/belt_MutableMap.js @@ -68,7 +68,7 @@ function removeArrayMutateAux(_t, xs, _i, len, cmp) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/es6/belt_MutableMapInt.js b/lib/es6/belt_MutableMapInt.js index 3cb1a4ce79..e3155c0fa2 100644 --- a/lib/es6/belt_MutableMapInt.js +++ b/lib/es6/belt_MutableMapInt.js @@ -257,7 +257,7 @@ function removeArrayMutateAux(_t, xs, _i, len) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/es6/belt_MutableMapString.js b/lib/es6/belt_MutableMapString.js index 0703abaf43..ed42d2cf98 100644 --- a/lib/es6/belt_MutableMapString.js +++ b/lib/es6/belt_MutableMapString.js @@ -257,7 +257,7 @@ function removeArrayMutateAux(_t, xs, _i, len) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/es6/belt_MutableQueue.js b/lib/es6/belt_MutableQueue.js index 492d2e6ddb..046f2e155c 100644 --- a/lib/es6/belt_MutableQueue.js +++ b/lib/es6/belt_MutableQueue.js @@ -136,7 +136,7 @@ function copy(q) { } _cell = cell.next; _prev = res; - continue ; + continue; } qRes.last = prev; return qRes; @@ -167,7 +167,7 @@ function mapU(q, f) { } _cell = cell.next; _prev = res; - continue ; + continue; } qRes.last = prev; return qRes; @@ -195,7 +195,7 @@ function forEachU(q, f) { } f(cell.content); _cell = cell.next; - continue ; + continue; }; } @@ -215,7 +215,7 @@ function reduceU(q, accu, f) { let accu$2 = f(accu$1, cell.content); _cell = cell.next; _accu = accu$2; - continue ; + continue; }; } @@ -251,7 +251,7 @@ function fillAux(_i, arr, _cell) { arr[i] = cell.content; _cell = cell.next; _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/belt_MutableSet.js b/lib/es6/belt_MutableSet.js index b6802bad5c..982de5b409 100644 --- a/lib/es6/belt_MutableSet.js +++ b/lib/es6/belt_MutableSet.js @@ -66,7 +66,7 @@ function removeMany0(_t, xs, _i, len, cmp) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/es6/belt_MutableSetInt.js b/lib/es6/belt_MutableSetInt.js index b680d23971..77eb5949fe 100644 --- a/lib/es6/belt_MutableSetInt.js +++ b/lib/es6/belt_MutableSetInt.js @@ -66,7 +66,7 @@ function removeMany0(_t, xs, _i, len) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/es6/belt_MutableSetString.js b/lib/es6/belt_MutableSetString.js index 6ba453d1ac..a39db395c8 100644 --- a/lib/es6/belt_MutableSetString.js +++ b/lib/es6/belt_MutableSetString.js @@ -66,7 +66,7 @@ function removeMany0(_t, xs, _i, len) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/es6/belt_MutableStack.js b/lib/es6/belt_MutableStack.js index b29258ef1f..93650f0b49 100644 --- a/lib/es6/belt_MutableStack.js +++ b/lib/es6/belt_MutableStack.js @@ -78,7 +78,7 @@ function size(s) { } _acc = acc + 1 | 0; _x = x$2; - continue ; + continue; }; } else { return 0; @@ -94,7 +94,7 @@ function forEachU(s, f) { } f(s$1.head); _s = s$1.tail; - continue ; + continue; }; } @@ -110,7 +110,7 @@ function dynamicPopIterU(s, f) { } s.root = match.tail; f(match.head); - continue ; + continue; }; } diff --git a/lib/es6/belt_Range.js b/lib/es6/belt_Range.js index 03ae5af496..19919e7847 100644 --- a/lib/es6/belt_Range.js +++ b/lib/es6/belt_Range.js @@ -22,7 +22,7 @@ function everyU(_s, f, p) { return false; } _s = s + 1 | 0; - continue ; + continue; }; } @@ -42,7 +42,7 @@ function everyByU(s, f, step, p) { return false; } _s = s$1 + step | 0; - continue ; + continue; }; } else { return true; @@ -63,7 +63,7 @@ function someU(_s, f, p) { return true; } _s = s + 1 | 0; - continue ; + continue; }; } @@ -83,7 +83,7 @@ function someByU(s, f, step, p) { return true; } _s = s$1 + step | 0; - continue ; + continue; }; } else { return false; diff --git a/lib/es6/belt_SortArray.js b/lib/es6/belt_SortArray.js index 27f499e4dd..8cb252b911 100644 --- a/lib/es6/belt_SortArray.js +++ b/lib/es6/belt_SortArray.js @@ -16,7 +16,7 @@ function sortedLengthAuxMore(xs, _prec, _acc, len, lt) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } @@ -42,7 +42,7 @@ function strictlySortedLengthU(xs, lt) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } else if (lt(x1, x0)) { return -sortedLengthAuxMore(xs, x1, 2, len, lt) | 0; @@ -71,7 +71,7 @@ function isSortedU(a, cmp) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } } @@ -103,7 +103,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d + 1 | 0; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } dst[d] = s2; let i2$1 = i2 + 1 | 0; @@ -113,7 +113,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d + 1 | 0; _s2 = src2[i2$1]; _i2 = i2$1; - continue ; + continue; }; } @@ -140,7 +140,7 @@ function unionU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } Belt_Array.blitUnsafe(src2, i2, dst, d$1, src2r - i2 | 0); return (d$1 + src2r | 0) - i2 | 0; @@ -164,7 +164,7 @@ function unionU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } dst[d] = s2; let i2$2 = i2 + 1 | 0; @@ -173,7 +173,7 @@ function unionU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d$3; _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d$3, src1r - i1 | 0); return (d$3 + src1r | 0) - i1 | 0; @@ -206,7 +206,7 @@ function intersectU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, } _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (c === 0) { dst[d] = s1; @@ -221,7 +221,7 @@ function intersectU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 >= src2r) { @@ -229,7 +229,7 @@ function intersectU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, } _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; }; } @@ -262,7 +262,7 @@ function diffU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (c === 0) { let i1$2 = i1 + 1 | 0; @@ -279,13 +279,13 @@ function diffU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 < src2r) { _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d, src1r - i1 | 0); return (d + src1r | 0) - i1 | 0; @@ -381,7 +381,7 @@ function binarySearchByU(sorted, key, cmp) { } } _hi = mid; - continue ; + continue; } if (lo$1 === mid) { if (cmp(sorted[hi$1], key) === 0) { @@ -391,7 +391,7 @@ function binarySearchByU(sorted, key, cmp) { } } _lo = mid; - continue ; + continue; }; } } diff --git a/lib/es6/belt_SortArrayInt.js b/lib/es6/belt_SortArrayInt.js index b9fc437873..2ba1e57eef 100644 --- a/lib/es6/belt_SortArrayInt.js +++ b/lib/es6/belt_SortArrayInt.js @@ -15,7 +15,7 @@ function sortedLengthAuxMore(xs, _prec, _acc, len) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } @@ -41,7 +41,7 @@ function strictlySortedLength(xs) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } else if (x0 > x1) { return -sortedLengthAuxMore(xs, x1, 2, len) | 0; @@ -66,7 +66,7 @@ function isSorted(a) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } } @@ -94,7 +94,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d + 1 | 0; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } dst[d] = s2; let i2$1 = i2 + 1 | 0; @@ -104,7 +104,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d + 1 | 0; _s2 = src2[i2$1]; _i2 = i2$1; - continue ; + continue; }; } @@ -130,7 +130,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } Belt_Array.blitUnsafe(src2, i2, dst, d$1, src2r - i2 | 0); return (d$1 + src2r | 0) - i2 | 0; @@ -154,7 +154,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } dst[d] = s2; let i2$2 = i2 + 1 | 0; @@ -163,7 +163,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$3; _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d$3, src1r - i1 | 0); return (d$3 + src1r | 0) - i1 | 0; @@ -191,7 +191,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { } _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (s1 === s2) { dst[d] = s1; @@ -206,7 +206,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 >= src2r) { @@ -214,7 +214,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { } _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; }; } @@ -242,7 +242,7 @@ function diff(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (s1 === s2) { let i1$2 = i1 + 1 | 0; @@ -259,13 +259,13 @@ function diff(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 < src2r) { _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d, src1r - i1 | 0); return (d + src1r | 0) - i1 | 0; @@ -346,7 +346,7 @@ function binarySearch(sorted, key) { } } _hi = mid; - continue ; + continue; } if (lo$1 === mid) { if (sorted[hi$1] === key) { @@ -356,7 +356,7 @@ function binarySearch(sorted, key) { } } _lo = mid; - continue ; + continue; }; } } diff --git a/lib/es6/belt_SortArrayString.js b/lib/es6/belt_SortArrayString.js index b9fc437873..2ba1e57eef 100644 --- a/lib/es6/belt_SortArrayString.js +++ b/lib/es6/belt_SortArrayString.js @@ -15,7 +15,7 @@ function sortedLengthAuxMore(xs, _prec, _acc, len) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } @@ -41,7 +41,7 @@ function strictlySortedLength(xs) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } else if (x0 > x1) { return -sortedLengthAuxMore(xs, x1, 2, len) | 0; @@ -66,7 +66,7 @@ function isSorted(a) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } } @@ -94,7 +94,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d + 1 | 0; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } dst[d] = s2; let i2$1 = i2 + 1 | 0; @@ -104,7 +104,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d + 1 | 0; _s2 = src2[i2$1]; _i2 = i2$1; - continue ; + continue; }; } @@ -130,7 +130,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } Belt_Array.blitUnsafe(src2, i2, dst, d$1, src2r - i2 | 0); return (d$1 + src2r | 0) - i2 | 0; @@ -154,7 +154,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } dst[d] = s2; let i2$2 = i2 + 1 | 0; @@ -163,7 +163,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$3; _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d$3, src1r - i1 | 0); return (d$3 + src1r | 0) - i1 | 0; @@ -191,7 +191,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { } _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (s1 === s2) { dst[d] = s1; @@ -206,7 +206,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 >= src2r) { @@ -214,7 +214,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { } _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; }; } @@ -242,7 +242,7 @@ function diff(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (s1 === s2) { let i1$2 = i1 + 1 | 0; @@ -259,13 +259,13 @@ function diff(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 < src2r) { _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d, src1r - i1 | 0); return (d + src1r | 0) - i1 | 0; @@ -346,7 +346,7 @@ function binarySearch(sorted, key) { } } _hi = mid; - continue ; + continue; } if (lo$1 === mid) { if (sorted[hi$1] === key) { @@ -356,7 +356,7 @@ function binarySearch(sorted, key) { } } _lo = mid; - continue ; + continue; }; } } diff --git a/lib/es6/belt_internalAVLset.js b/lib/es6/belt_internalAVLset.js index 2babdbac8e..7c3ed870c4 100644 --- a/lib/es6/belt_internalAVLset.js +++ b/lib/es6/belt_internalAVLset.js @@ -90,7 +90,7 @@ function min0Aux(_n) { return n.v; } _n = n$1; - continue ; + continue; }; } @@ -116,7 +116,7 @@ function max0Aux(_n) { return n.v; } _n = n$1; - continue ; + continue; }; } @@ -160,7 +160,7 @@ function stackAllLeft(_v, _s) { tl: s }; _v = v.l; - continue ; + continue; }; } @@ -173,7 +173,7 @@ function forEachU(_n, f) { forEachU(n.l, f); f(n.v); _n = n.r; - continue ; + continue; }; } @@ -190,7 +190,7 @@ function reduceU(_s, _accu, f) { } _accu = f(reduceU(s.l, accu, f), s.v); _s = s.r; - continue ; + continue; }; } @@ -211,7 +211,7 @@ function everyU(_n, p) { return false; } _n = n.r; - continue ; + continue; }; } @@ -232,7 +232,7 @@ function someU(_n, p) { return true; } _n = n.r; - continue ; + continue; }; } @@ -348,7 +348,7 @@ function toListAux(_n, _accu) { tl: toListAux(n.r, accu) }; _n = n.l; - continue ; + continue; }; } @@ -382,7 +382,7 @@ function checkInvariantInternal(_v) { } checkInvariantInternal(l); _v = r; - continue ; + continue; }; } @@ -401,7 +401,7 @@ function fillArray(_n, _i, arr) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -427,7 +427,7 @@ function fillArrayWithPartition(_n, cursor, arr, p) { return; } _n = r; - continue ; + continue; }; } @@ -445,7 +445,7 @@ function fillArrayWithFilter(_n, _i, arr, p) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -608,7 +608,7 @@ function has(_t, x, cmp) { return true; } _t = c < 0 ? t.l : t.r; - continue ; + continue; }; } @@ -635,7 +635,7 @@ function cmp(s1, s2, cmp$1) { } _e2 = stackAllLeft(h2.r, e2.tl); _e1 = stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } else if (len1 < len2) { return -1; @@ -671,20 +671,20 @@ function subset(_s1, _s2, cmp) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset(create(l1, v1, undefined), l2, cmp)) { return false; } _s1 = r1; - continue ; + continue; } if (!subset(create(undefined, v1, r1), r2, cmp)) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -700,7 +700,7 @@ function get(_n, x, cmp) { return Caml_option.some(v); } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -716,7 +716,7 @@ function getUndefined(_n, x, cmp) { return v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -730,7 +730,7 @@ function getExn(_n, x, cmp) { return v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", diff --git a/lib/es6/belt_internalAVLtree.js b/lib/es6/belt_internalAVLtree.js index 93dbbab4e2..1b58f322b7 100644 --- a/lib/es6/belt_internalAVLtree.js +++ b/lib/es6/belt_internalAVLtree.js @@ -112,7 +112,7 @@ function minKey0Aux(_n) { return n.k; } _n = n$1; - continue ; + continue; }; } @@ -138,7 +138,7 @@ function maxKey0Aux(_n) { return n.k; } _n = n$1; - continue ; + continue; }; } @@ -167,7 +167,7 @@ function minKV0Aux(_n) { ]; } _n = n$1; - continue ; + continue; }; } @@ -196,7 +196,7 @@ function maxKV0Aux(_n) { ]; } _n = n$1; - continue ; + continue; }; } @@ -241,7 +241,7 @@ function stackAllLeft(_v, _s) { tl: s }; _v = v.l; - continue ; + continue; }; } @@ -282,7 +282,7 @@ function forEachU(_n, f) { forEachU(n.l, f); f(n.k, n.v); _n = n.r; - continue ; + continue; }; } @@ -344,7 +344,7 @@ function reduceU(_m, _accu, f) { let r = m.r; _accu = f(reduceU(l, accu, f), v, d); _m = r; - continue ; + continue; }; } @@ -365,7 +365,7 @@ function everyU(_n, p) { return false; } _n = n.r; - continue ; + continue; }; } @@ -386,7 +386,7 @@ function someU(_n, p) { return true; } _n = n.r; - continue ; + continue; }; } @@ -569,7 +569,7 @@ function toListAux(_n, _accu) { tl: toListAux(r, accu) }; _n = l; - continue ; + continue; }; } @@ -599,7 +599,7 @@ function checkInvariantInternal(_v) { } checkInvariantInternal(l); _v = r; - continue ; + continue; }; } @@ -618,7 +618,7 @@ function fillArrayKey(_n, _i, arr) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -636,7 +636,7 @@ function fillArrayValue(_n, _i, arr) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -658,7 +658,7 @@ function fillArray(_n, _i, arr) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -807,7 +807,7 @@ function cmpU(s1, s2, kcmp, vcmp) { } _e2 = stackAllLeft(h2.r, e2.tl); _e1 = stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } else if (len1 < len2) { return -1; @@ -842,7 +842,7 @@ function eqU(s1, s2, kcmp, veq) { } _e2 = stackAllLeft(h2.r, e2.tl); _e1 = stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } else { return false; @@ -865,7 +865,7 @@ function get(_n, x, cmp) { return Caml_option.some(n.v); } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -881,7 +881,7 @@ function getUndefined(_n, x, cmp) { return n.v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -895,7 +895,7 @@ function getExn(_n, x, cmp) { return n.v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -916,7 +916,7 @@ function getWithDefault(_n, x, def, cmp) { return n.v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -932,7 +932,7 @@ function has(_n, x, cmp) { return true; } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } diff --git a/lib/es6/belt_internalBuckets.js b/lib/es6/belt_internalBuckets.js index 48b48534c4..c78b17f237 100644 --- a/lib/es6/belt_internalBuckets.js +++ b/lib/es6/belt_internalBuckets.js @@ -32,7 +32,7 @@ function copyAuxCont(_c, _prec) { prec.next = ncopy; _prec = ncopy; _c = c.next; - continue ; + continue; }; } @@ -63,7 +63,7 @@ function bucketLength(_accu, _buckets) { } _buckets = buckets.next; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -75,7 +75,7 @@ function do_bucket_iter(f, _buckets) { } f(buckets.key, buckets.value); _buckets = buckets.next; - continue ; + continue; }; } @@ -99,7 +99,7 @@ function do_bucket_fold(f, _b, _accu) { } _accu = f(accu, b.key, b.value); _b = b.next; - continue ; + continue; }; } @@ -167,7 +167,7 @@ function filterMapInplaceBucket(f, h, i, _prec, _cell) { } _cell = n; _prec = cell; - continue ; + continue; } h.size = h.size - 1 | 0; if (n === undefined) { @@ -179,7 +179,7 @@ function filterMapInplaceBucket(f, h, i, _prec, _cell) { return; } _cell = n; - continue ; + continue; }; } @@ -212,7 +212,7 @@ function fillArray(_i, arr, _cell) { } _cell = v; _i = i + 1 | 0; - continue ; + continue; }; } @@ -227,7 +227,7 @@ function fillArrayMap(_i, arr, _cell, f) { } _cell = v; _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/belt_internalBucketsType.js b/lib/es6/belt_internalBucketsType.js index 733cc172ca..39d523f98a 100644 --- a/lib/es6/belt_internalBucketsType.js +++ b/lib/es6/belt_internalBucketsType.js @@ -11,7 +11,7 @@ function power_2_above(_x, n) { return x; } _x = (x << 1); - continue ; + continue; }; } diff --git a/lib/es6/belt_internalMapInt.js b/lib/es6/belt_internalMapInt.js index fd55125beb..29491a4b1e 100644 --- a/lib/es6/belt_internalMapInt.js +++ b/lib/es6/belt_internalMapInt.js @@ -33,7 +33,7 @@ function get(_n, x) { return Caml_option.some(n.v); } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -48,7 +48,7 @@ function getUndefined(_n, x) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -61,7 +61,7 @@ function getExn(_n, x) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -81,7 +81,7 @@ function getWithDefault(_n, x, def) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -96,7 +96,7 @@ function has(_n, x) { return true; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -234,7 +234,7 @@ function compareAux(_e1, _e2, vcmp) { } _e2 = Belt_internalAVLtree.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLtree.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } @@ -271,7 +271,7 @@ function eqAux(_e1, _e2, eq) { } _e2 = Belt_internalAVLtree.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLtree.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } diff --git a/lib/es6/belt_internalMapString.js b/lib/es6/belt_internalMapString.js index 54c470c695..519c56a02b 100644 --- a/lib/es6/belt_internalMapString.js +++ b/lib/es6/belt_internalMapString.js @@ -33,7 +33,7 @@ function get(_n, x) { return Caml_option.some(n.v); } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -48,7 +48,7 @@ function getUndefined(_n, x) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -61,7 +61,7 @@ function getExn(_n, x) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -81,7 +81,7 @@ function getWithDefault(_n, x, def) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -96,7 +96,7 @@ function has(_n, x) { return true; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -234,7 +234,7 @@ function compareAux(_e1, _e2, vcmp) { } _e2 = Belt_internalAVLtree.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLtree.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } @@ -271,7 +271,7 @@ function eqAux(_e1, _e2, eq) { } _e2 = Belt_internalAVLtree.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLtree.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } diff --git a/lib/es6/belt_internalSetBuckets.js b/lib/es6/belt_internalSetBuckets.js index 69c207800f..191dcb2d82 100644 --- a/lib/es6/belt_internalSetBuckets.js +++ b/lib/es6/belt_internalSetBuckets.js @@ -17,7 +17,7 @@ function copyAuxCont(_c, _prec) { prec.next = ncopy; _prec = ncopy; _c = c.next; - continue ; + continue; }; } @@ -60,7 +60,7 @@ function bucketLength(_accu, _buckets) { } _buckets = buckets.next; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -72,7 +72,7 @@ function doBucketIter(f, _buckets) { } f(buckets.key); _buckets = buckets.next; - continue ; + continue; }; } @@ -98,7 +98,7 @@ function fillArray(_i, arr, _cell) { } _cell = v; _i = i + 1 | 0; - continue ; + continue; }; } @@ -125,7 +125,7 @@ function doBucketFold(f, _b, _accu) { } _accu = f(accu, b.key); _b = b.next; - continue ; + continue; }; } diff --git a/lib/es6/belt_internalSetInt.js b/lib/es6/belt_internalSetInt.js index 96aaf1f1f4..b28d1f785f 100644 --- a/lib/es6/belt_internalSetInt.js +++ b/lib/es6/belt_internalSetInt.js @@ -14,7 +14,7 @@ function has(_t, x) { return true; } _t = x < v ? t.l : t.r; - continue ; + continue; }; } @@ -41,7 +41,7 @@ function compareAux(_e1, _e2) { } _e2 = Belt_internalAVLset.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLset.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } @@ -83,20 +83,20 @@ function subset(_s1, _s2) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (v1 < v2) { if (!subset(Belt_internalAVLset.create(l1, v1, undefined), l2)) { return false; } _s1 = r1; - continue ; + continue; } if (!subset(Belt_internalAVLset.create(undefined, v1, r1), r2)) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -111,7 +111,7 @@ function get(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -126,7 +126,7 @@ function getUndefined(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -139,7 +139,7 @@ function getExn(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", diff --git a/lib/es6/belt_internalSetString.js b/lib/es6/belt_internalSetString.js index 3593e98149..9ff7ab33bd 100644 --- a/lib/es6/belt_internalSetString.js +++ b/lib/es6/belt_internalSetString.js @@ -14,7 +14,7 @@ function has(_t, x) { return true; } _t = x < v ? t.l : t.r; - continue ; + continue; }; } @@ -41,7 +41,7 @@ function compareAux(_e1, _e2) { } _e2 = Belt_internalAVLset.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLset.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } @@ -83,20 +83,20 @@ function subset(_s1, _s2) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (v1 < v2) { if (!subset(Belt_internalAVLset.create(l1, v1, undefined), l2)) { return false; } _s1 = r1; - continue ; + continue; } if (!subset(Belt_internalAVLset.create(undefined, v1, r1), r2)) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -111,7 +111,7 @@ function get(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -126,7 +126,7 @@ function getUndefined(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -139,7 +139,7 @@ function getExn(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", diff --git a/lib/es6/buffer.js b/lib/es6/buffer.js index 010a1f8113..4740941e82 100644 --- a/lib/es6/buffer.js +++ b/lib/es6/buffer.js @@ -323,7 +323,7 @@ function advance_to_closing(opening, closing, k, s, start) { if (Caml_string.get(s, i) === opening) { _i = i + 1 | 0; _k = k$1 + 1 | 0; - continue ; + continue; } if (Caml_string.get(s, i) === closing) { if (k$1 === 0) { @@ -331,10 +331,10 @@ function advance_to_closing(opening, closing, k, s, start) { } _i = i + 1 | 0; _k = k$1 - 1 | 0; - continue ; + continue; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -366,7 +366,7 @@ function advance_to_non_alpha(s, start) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -414,30 +414,30 @@ function add_substitute(b, f, s) { add_char(b, current); _i = i + 1 | 0; _previous = /* ' ' */32; - continue ; + continue; } if (current !== 92) { add_char(b, current); _i = i + 1 | 0; _previous = current; - continue ; + continue; } _i = i + 1 | 0; _previous = current; - continue ; + continue; } if (previous === /* '\\' */92) { add_char(b, current); _i = i + 1 | 0; _previous = /* ' ' */32; - continue ; + continue; } let j = i + 1 | 0; let match = find_ident(s, j, lim); add_string(b, Curry._1(f, match[0])); _i = match[1]; _previous = /* ' ' */32; - continue ; + continue; }; } diff --git a/lib/es6/bytes.js b/lib/es6/bytes.js index d30b0e1bd6..bc4e0d72a4 100644 --- a/lib/es6/bytes.js +++ b/lib/es6/bytes.js @@ -261,7 +261,7 @@ function sum_lengths(_acc, seplen, _param) { } _param = tl; _acc = ensure_ge((hd.length + seplen | 0) + acc | 0, acc); - continue ; + continue; }; } @@ -286,7 +286,7 @@ function concat(sep, param) { unsafe_blit(sep, 0, dst, pos + hd.length | 0, seplen); _param = tl; _pos = (pos + hd.length | 0) + seplen | 0; - continue ; + continue; } unsafe_blit(hd, 0, dst, pos, hd.length); return dst; @@ -494,7 +494,7 @@ function index_rec(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -512,7 +512,7 @@ function index_rec_opt(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -557,7 +557,7 @@ function rindex_rec(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -586,7 +586,7 @@ function rindex_rec_opt(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/bytesLabels.js b/lib/es6/bytesLabels.js index d30b0e1bd6..bc4e0d72a4 100644 --- a/lib/es6/bytesLabels.js +++ b/lib/es6/bytesLabels.js @@ -261,7 +261,7 @@ function sum_lengths(_acc, seplen, _param) { } _param = tl; _acc = ensure_ge((hd.length + seplen | 0) + acc | 0, acc); - continue ; + continue; }; } @@ -286,7 +286,7 @@ function concat(sep, param) { unsafe_blit(sep, 0, dst, pos + hd.length | 0, seplen); _param = tl; _pos = (pos + hd.length | 0) + seplen | 0; - continue ; + continue; } unsafe_blit(hd, 0, dst, pos, hd.length); return dst; @@ -494,7 +494,7 @@ function index_rec(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -512,7 +512,7 @@ function index_rec_opt(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -557,7 +557,7 @@ function rindex_rec(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -586,7 +586,7 @@ function rindex_rec_opt(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/caml_array.js b/lib/es6/caml_array.js index 57f5c774b8..f22a73736a 100644 --- a/lib/es6/caml_array.js +++ b/lib/es6/caml_array.js @@ -22,7 +22,7 @@ function len(_acc, _l) { } _l = l.tl; _acc = l.hd.length + acc | 0; - continue ; + continue; }; } @@ -44,7 +44,7 @@ function fill(arr, _i, _l) { }; _l = l.tl; _i = k; - continue ; + continue; }; } diff --git a/lib/es6/caml_bytes.js b/lib/es6/caml_bytes.js index ccfb1b2c2e..7c6a0b1569 100644 --- a/lib/es6/caml_bytes.js +++ b/lib/es6/caml_bytes.js @@ -53,7 +53,7 @@ function bytes_compare_aux(s1, s2, _off, len, def) { return -1; } _off = off + 1 | 0; - continue ; + continue; }; } @@ -85,7 +85,7 @@ function bytes_equal(s1, s2) { return false; } _off = off + 1 | 0; - continue ; + continue; }; } else { return false; diff --git a/lib/es6/caml_format.js b/lib/es6/caml_format.js index bb971de832..1168278fc9 100644 --- a/lib/es6/caml_format.js +++ b/lib/es6/caml_format.js @@ -150,7 +150,7 @@ function int_of_string(s) { let a = s.codePointAt(k); if (a === /* '_' */95) { _k = k + 1 | 0; - continue ; + continue; } let v = parse_digit(a); if (v < 0 || v >= base) { @@ -170,7 +170,7 @@ function int_of_string(s) { } _k = k + 1 | 0; _acc = acc$1; - continue ; + continue; }; }; let res = match[1] * aux(d, i + 1 | 0); @@ -236,7 +236,7 @@ function int64_of_string(s) { let a = s.codePointAt(k); if (a === /* '_' */95) { _k = k + 1 | 0; - continue ; + continue; } let v = Caml_int64.of_int32(parse_digit(a)); if (Caml.i64_lt(v, Caml_int64.zero) || Caml.i64_ge(v, base) || Caml.i64_gt(acc, threshold)) { @@ -249,7 +249,7 @@ function int64_of_string(s) { let acc$1 = Caml_int64.add(Caml_int64.mul(base, acc), v); _k = k + 1 | 0; _acc = acc$1; - continue ; + continue; }; }; let res = Caml_int64.mul(sign, aux(d, i + 1 | 0)); @@ -327,7 +327,7 @@ function parse_format(fmt) { f.base = "Hex"; f.uppercase = true; _i = i + 1 | 0; - continue ; + continue; case 101 : case 102 : case 103 : @@ -340,11 +340,11 @@ function parse_format(fmt) { case 111 : f.base = "Oct"; _i = i + 1 | 0; - continue ; + continue; case 117 : f.base = "Dec"; _i = i + 1 | 0; - continue ; + continue; case 89 : case 90 : case 91 : @@ -374,7 +374,7 @@ function parse_format(fmt) { case 120 : f.base = "Hex"; _i = i + 1 | 0; - continue ; + continue; } } @@ -385,14 +385,14 @@ function parse_format(fmt) { f.uppercase = true; f.conv = String.fromCharCode(lowercase(c)); _i = i + 1 | 0; - continue ; + continue; } } else { switch (c) { case 35 : f.alternate = true; _i = i + 1 | 0; - continue ; + continue; case 32 : case 43 : exit = 2; @@ -400,7 +400,7 @@ function parse_format(fmt) { case 45 : f.justify = "-"; _i = i + 1 | 0; - continue ; + continue; case 46 : f.prec = 0; let j = i + 1 | 0; @@ -412,11 +412,11 @@ function parse_format(fmt) { j = j + 1 | 0; }; _i = j; - continue ; + continue; case 48 : f.filter = "0"; _i = i + 1 | 0; - continue ; + continue; case 49 : case 50 : case 51 : @@ -435,11 +435,11 @@ function parse_format(fmt) { switch (exit) { case 1 : _i = i + 1 | 0; - continue ; + continue; case 2 : f.signstyle = String.fromCharCode(c); _i = i + 1 | 0; - continue ; + continue; case 3 : f.width = 0; let j$1 = i; @@ -451,17 +451,17 @@ function parse_format(fmt) { j$1 = j$1 + 1 | 0; }; _i = j$1; - continue ; + continue; case 4 : f.signedconv = true; f.base = "Dec"; _i = i + 1 | 0; - continue ; + continue; case 5 : f.signedconv = true; f.conv = String.fromCharCode(c); _i = i + 1 | 0; - continue ; + continue; } }; diff --git a/lib/es6/caml_int64.js b/lib/es6/caml_int64.js index 091dfe1584..2323267d3a 100644 --- a/lib/es6/caml_int64.js +++ b/lib/es6/caml_int64.js @@ -241,7 +241,7 @@ function mul(_this, _other) { } _other = neg(other); _this = neg($$this); - continue ; + continue; } if (other_hi < 0) { return neg(mul($$this, neg(other))); @@ -447,7 +447,7 @@ function div(_self, _other) { } _other = neg(other); _self = neg(self); - continue ; + continue; } if (other_hi < 0) { return neg(div(self, neg(other))); diff --git a/lib/es6/caml_obj.js b/lib/es6/caml_obj.js index cea7618aad..0e56757bd4 100644 --- a/lib/es6/caml_obj.js +++ b/lib/es6/caml_obj.js @@ -165,7 +165,7 @@ function compare(a, b) { return res; } _i = i + 1 | 0; - continue ; + continue; }; } else if ((a instanceof Date && b instanceof Date)) { return (a - b); @@ -184,7 +184,7 @@ function compare(a, b) { return res$1; } _i$1 = i$1 + 1 | 0; - continue ; + continue; }; } else { let _i$2 = 0; @@ -198,7 +198,7 @@ function compare(a, b) { return res$2; } _i$2 = i$2 + 1 | 0; - continue ; + continue; }; } } @@ -306,7 +306,7 @@ function equal(a, b) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } else if ((a instanceof Date && b instanceof Date)) { return !(a > b || a < b); diff --git a/lib/es6/curry.js b/lib/es6/curry.js index 5a384d8740..6ce524794b 100644 --- a/lib/es6/curry.js +++ b/lib/es6/curry.js @@ -20,7 +20,7 @@ function app(_f, _args) { } _args = Caml_array.sub(args, arity, -d | 0); _f = f.apply(null, Caml_array.sub(args, 0, arity)); - continue ; + continue; }; } diff --git a/lib/es6/filename.js b/lib/es6/filename.js index 38e02568ba..05a7cf1555 100644 --- a/lib/es6/filename.js +++ b/lib/es6/filename.js @@ -31,11 +31,11 @@ function generic_basename(is_dir_sep, current_dir_name, name) { return $$String.sub(name, n$1 + 1 | 0, (p - n$1 | 0) - 1 | 0); } _n$1 = n$1 - 1 | 0; - continue ; + continue; }; } _n = n - 1 | 0; - continue ; + continue; }; } } @@ -68,15 +68,15 @@ function generic_dirname(is_dir_sep, current_dir_name, name) { return $$String.sub(name, 0, n$2 + 1 | 0); } _n$2 = n$2 - 1 | 0; - continue ; + continue; }; } _n$1 = n$1 - 1 | 0; - continue ; + continue; }; } _n = n - 1 | 0; - continue ; + continue; }; } } @@ -229,7 +229,7 @@ function quote$1(s) { } $$Buffer.add_char(b, c); _i = i + 1 | 0; - continue ; + continue; }; }; let loop_bs = function (_n, _i) { @@ -248,7 +248,7 @@ function quote$1(s) { } _i = i + 1 | 0; _n = n + 1 | 0; - continue ; + continue; } add_bs((n << 1) + 1 | 0); $$Buffer.add_char(b, /* '"' */34); @@ -408,11 +408,11 @@ function extension_len(name) { return name.length - i | 0; } _i$1 = i$1 - 1 | 0; - continue ; + continue; }; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/genlex.js b/lib/es6/genlex.js index 307badc512..622b3627a4 100644 --- a/lib/es6/genlex.js +++ b/lib/es6/genlex.js @@ -101,7 +101,7 @@ function make_lexer(keywords) { case 26 : case 32 : Stream.junk(strm__); - continue ; + continue; case 34 : Stream.junk(strm__); reset_buffer(); @@ -289,7 +289,7 @@ function make_lexer(keywords) { } Stream.junk(strm__); store(c$3); - continue ; + continue; }; case 3 : Stream.junk(strm__); @@ -370,7 +370,7 @@ function make_lexer(keywords) { } Stream.junk(strm__); store(c); - continue ; + continue; }; }; let number = function (strm__) { @@ -388,7 +388,7 @@ function make_lexer(keywords) { if (c >= 48) { Stream.junk(strm__); store(c); - continue ; + continue; } } else { @@ -401,7 +401,7 @@ function make_lexer(keywords) { if (!(c$1 > 57 || c$1 < 48)) { Stream.junk(strm__); store(c$1); - continue ; + continue; } } else if (c$1 > 100 || c$1 < 70) { @@ -451,7 +451,7 @@ function make_lexer(keywords) { } Stream.junk(strm__); store(c); - continue ; + continue; }; }; let string = function (strm__) { @@ -462,7 +462,7 @@ function make_lexer(keywords) { if (c !== 92) { Stream.junk(strm__); store(c); - continue ; + continue; } Stream.junk(strm__); let c$1; @@ -481,7 +481,7 @@ function make_lexer(keywords) { throw exn; } store(c$1); - continue ; + continue; } Stream.junk(strm__); return get_string(); @@ -619,7 +619,7 @@ function make_lexer(keywords) { return comment(strm__); } Stream.junk(strm__); - continue ; + continue; } Stream.junk(strm__); return; @@ -631,7 +631,7 @@ function make_lexer(keywords) { }; default: Stream.junk(strm__); - continue ; + continue; } } else { throw { diff --git a/lib/es6/hashtbl.js b/lib/es6/hashtbl.js index c64ad25205..635889677c 100644 --- a/lib/es6/hashtbl.js +++ b/lib/es6/hashtbl.js @@ -53,7 +53,7 @@ function power_2_above(_x, n) { return x; } _x = (x << 1); - continue ; + continue; }; } @@ -125,7 +125,7 @@ function copy_bucketlist(param) { prec.next = r; _param = next; _prec = r; - continue ; + continue; }; }; let r = { @@ -186,7 +186,7 @@ function resize(indexfun, h) { } Caml_array.set(ndata_tail, nidx, cell); _param = next; - continue ; + continue; }; }; for(let i = 0; i < osize; ++i){ @@ -247,7 +247,7 @@ function remove(h, key) { } _param = next; _prec = param; - continue ; + continue; }; } @@ -305,7 +305,7 @@ function find(h, key) { return data; } _param = next; - continue ; + continue; }; } } @@ -352,7 +352,7 @@ function find_opt(h, key) { return Caml_option.some(data); } _param = next; - continue ; + continue; }; } } @@ -374,7 +374,7 @@ function find_all(h, key) { }; } _param = next; - continue ; + continue; }; }; return find_in_bucket(Caml_array.get(h.data, key_index(h, key))); @@ -394,7 +394,7 @@ function replace_bucket(key, data, _param) { return false; } _param = next; - continue ; + continue; }; } @@ -431,7 +431,7 @@ function mem(h, key) { return true; } _param = next; - continue ; + continue; }; } @@ -447,7 +447,7 @@ function iter(f, h) { let next = param.next; Curry._2(f, key, data); _param = next; - continue ; + continue; }; }; let old_trav = h.initial_size < 0; @@ -499,11 +499,11 @@ function filter_map_inplace_bucket(f, h, i, _prec, _param) { param.data = Caml_option.valFromOption(data$1); _param = next; _prec = param; - continue ; + continue; } h.size = h.size - 1 | 0; _param = next; - continue ; + continue; }; } @@ -541,7 +541,7 @@ function fold(f, h, init) { let next = b.next; _accu = Curry._3(f, key, data, accu); _b = next; - continue ; + continue; }; }; let old_trav = h.initial_size < 0; @@ -578,7 +578,7 @@ function bucket_length(_accu, _param) { let next = param.next; _param = next; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -641,7 +641,7 @@ function MakeSeeded(H) { } _param = next; _prec = param; - continue ; + continue; }; }; let find = function (h, key) { @@ -698,7 +698,7 @@ function MakeSeeded(H) { return data; } _param = next; - continue ; + continue; }; } }; @@ -744,7 +744,7 @@ function MakeSeeded(H) { return Caml_option.some(data); } _param = next; - continue ; + continue; }; } }; @@ -765,7 +765,7 @@ function MakeSeeded(H) { }; } _param = next; - continue ; + continue; }; }; return find_in_bucket(Caml_array.get(h.data, key_index(h, key))); @@ -784,7 +784,7 @@ function MakeSeeded(H) { return false; } _param = next; - continue ; + continue; }; }; let replace = function (h, key, data) { @@ -819,7 +819,7 @@ function MakeSeeded(H) { return true; } _param = next; - continue ; + continue; }; }; return { @@ -885,7 +885,7 @@ function Make(H) { } _param = next; _prec = param; - continue ; + continue; }; }; let find = function (h, key) { @@ -942,7 +942,7 @@ function Make(H) { return data; } _param = next; - continue ; + continue; }; } }; @@ -988,7 +988,7 @@ function Make(H) { return Caml_option.some(data); } _param = next; - continue ; + continue; }; } }; @@ -1009,7 +1009,7 @@ function Make(H) { }; } _param = next; - continue ; + continue; }; }; return find_in_bucket(Caml_array.get(h.data, key_index(h, key))); @@ -1028,7 +1028,7 @@ function Make(H) { return false; } _param = next; - continue ; + continue; }; }; let replace = function (h, key, data) { @@ -1063,7 +1063,7 @@ function Make(H) { return true; } _param = next; - continue ; + continue; }; }; let create$1 = function (sz) { diff --git a/lib/es6/js_dict.js b/lib/es6/js_dict.js index 9022c73606..aada879bc8 100644 --- a/lib/es6/js_dict.js +++ b/lib/es6/js_dict.js @@ -48,7 +48,7 @@ function fromList(entries) { let match = x.hd; dict[match[0]] = match[1]; _x = x.tl; - continue ; + continue; }; } diff --git a/lib/es6/js_list.js b/lib/es6/js_list.js index 9e7dab0adf..90bc952cfc 100644 --- a/lib/es6/js_list.js +++ b/lib/es6/js_list.js @@ -14,7 +14,7 @@ function length(l) { } _x = x.tl; _len = len + 1 | 0; - continue ; + continue; }; } @@ -60,7 +60,7 @@ function nth(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; }; } @@ -76,7 +76,7 @@ function revAppend(_l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -96,7 +96,7 @@ function mapRevAux(f, _acc, _ls) { hd: f(ls.hd), tl: acc }; - continue ; + continue; }; } @@ -116,7 +116,7 @@ function iter(f, _x) { } f(x.hd); _x = x.tl; - continue ; + continue; }; } @@ -132,7 +132,7 @@ function iteri(f, l) { f(i, x.hd); _x = x.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -145,7 +145,7 @@ function foldLeft(f, _accu, _l) { } _l = l.tl; _accu = f(accu, l.hd); - continue ; + continue; }; } @@ -158,7 +158,7 @@ function tailLoop(f, _acc, _x) { } _x = x.tl; _acc = f(x.hd, acc); - continue ; + continue; }; } @@ -189,7 +189,7 @@ function flatten(lx) { } _lx = lx$1.tl; _acc = revAppend(lx$1.hd, acc); - continue ; + continue; }; } @@ -208,10 +208,10 @@ function filterRevAux(f, _acc, _xs) { hd: y, tl: acc }; - continue ; + continue; } _xs = ys; - continue ; + continue; }; } @@ -234,10 +234,10 @@ function filterMapRevAux(f, _acc, _xs) { hd: Caml_option.valFromOption(z), tl: acc }; - continue ; + continue; } _xs = ys; - continue ; + continue; }; } @@ -256,7 +256,7 @@ function countBy(f, xs) { } _xs = xs$1.tl; _acc = f(xs$1.hd) ? acc + 1 | 0 : acc; - continue ; + continue; }; } @@ -280,7 +280,7 @@ function toVector(xs) { a[i] = x.hd; _x = x.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -303,7 +303,7 @@ function equal(cmp, _xs, _ys) { } _ys = ys.tl; _xs = xs.tl; - continue ; + continue; }; } diff --git a/lib/es6/js_mapperRt.js b/lib/es6/js_mapperRt.js index f47342386c..030f265053 100644 --- a/lib/es6/js_mapperRt.js +++ b/lib/es6/js_mapperRt.js @@ -23,7 +23,7 @@ function fromInt(len, xs, $$enum) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -42,7 +42,7 @@ function fromIntAssert(len, xs, $$enum) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/js_vector.js b/lib/es6/js_vector.js index 88ebde71b2..ccbecab5a3 100644 --- a/lib/es6/js_vector.js +++ b/lib/es6/js_vector.js @@ -53,7 +53,7 @@ function toList(a) { tl: res }; _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/list.js b/lib/es6/list.js index d861adfc14..da328481b8 100644 --- a/lib/es6/list.js +++ b/lib/es6/list.js @@ -16,7 +16,7 @@ function length(l) { } _param = param.tl; _len = len + 1 | 0; - continue ; + continue; }; } @@ -68,7 +68,7 @@ function nth(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Failure", @@ -99,7 +99,7 @@ function nth_opt(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; }; } @@ -115,7 +115,7 @@ function rev_append(_l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -135,7 +135,7 @@ function init_tailrec_aux(_acc, _i, n, f) { hd: Curry._1(f, i), tl: acc }; - continue ; + continue; }; } @@ -213,7 +213,7 @@ function rev_map(f, l) { hd: Curry._1(f, param.hd), tl: accu }; - continue ; + continue; }; } @@ -225,7 +225,7 @@ function iter(f, _param) { } Curry._1(f, param.hd); _param = param.tl; - continue ; + continue; }; } @@ -241,7 +241,7 @@ function iteri(f, l) { Curry._2(f, i, param.hd); _param = param.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -254,7 +254,7 @@ function fold_left(f, _accu, _l) { } _l = l.tl; _accu = Curry._2(f, accu, l.hd); - continue ; + continue; }; } @@ -307,7 +307,7 @@ function rev_map2(f, l1, l2) { hd: Curry._2(f, l1$1.hd, l2$1.hd), tl: accu }; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -335,7 +335,7 @@ function iter2(f, _l1, _l2) { Curry._2(f, l1.hd, l2.hd); _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -364,7 +364,7 @@ function fold_left2(f, _accu, _l1, _l2) { _l2 = l2.tl; _l1 = l1.tl; _accu = Curry._3(f, accu, l1.hd, l2.hd); - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -414,7 +414,7 @@ function for_all(p, _param) { return false; } _param = param.tl; - continue ; + continue; }; } @@ -428,7 +428,7 @@ function exists(p, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -443,7 +443,7 @@ function for_all2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -473,7 +473,7 @@ function exists2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -502,7 +502,7 @@ function mem(x, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -516,7 +516,7 @@ function memq(x, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -529,7 +529,7 @@ function assoc(x, _param) { return match[1]; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -549,7 +549,7 @@ function assoc_opt(x, _param) { return Caml_option.some(match[1]); } _param = param.tl; - continue ; + continue; }; } @@ -562,7 +562,7 @@ function assq(x, _param) { return match[1]; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -582,7 +582,7 @@ function assq_opt(x, _param) { return Caml_option.some(match[1]); } _param = param.tl; - continue ; + continue; }; } @@ -596,7 +596,7 @@ function mem_assoc(x, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -610,7 +610,7 @@ function mem_assq(x, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -655,7 +655,7 @@ function find(p, _param) { return x; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -675,7 +675,7 @@ function find_opt(p, _param) { return Caml_option.some(x); } _param = param.tl; - continue ; + continue; }; } @@ -697,10 +697,10 @@ function find_all(p) { hd: x, tl: accu }; - continue ; + continue; } _param = l; - continue ; + continue; }; }; } @@ -727,14 +727,14 @@ function partition(p, l) { hd: x, tl: yes }; - continue ; + continue; } _param = l$1; _no = { hd: x, tl: no }; - continue ; + continue; }; } @@ -818,7 +818,7 @@ function chop(_k, _l) { if (l) { _l = l.tl; _k = k - 1 | 0; - continue ; + continue; } throw { RE_EXN_ID: "Assert_failure", @@ -969,14 +969,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -1115,14 +1115,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let len = length(l); @@ -1347,7 +1347,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 > 0) { _accu = { @@ -1355,14 +1355,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -1578,7 +1578,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 < 0) { _accu = { @@ -1586,14 +1586,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let len = length(l); @@ -1620,7 +1620,7 @@ function compare_lengths(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1642,7 +1642,7 @@ function compare_length_with(_l, _n) { } _n = n - 1 | 0; _l = l.tl; - continue ; + continue; }; } diff --git a/lib/es6/listLabels.js b/lib/es6/listLabels.js index 651d67236d..6a1c78322d 100644 --- a/lib/es6/listLabels.js +++ b/lib/es6/listLabels.js @@ -16,7 +16,7 @@ function length(l) { } _param = param.tl; _len = len + 1 | 0; - continue ; + continue; }; } @@ -68,7 +68,7 @@ function nth(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Failure", @@ -99,7 +99,7 @@ function nth_opt(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; }; } @@ -115,7 +115,7 @@ function rev_append(_l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -135,7 +135,7 @@ function init_tailrec_aux(_acc, _i, n, f) { hd: Curry._1(f, i), tl: acc }; - continue ; + continue; }; } @@ -213,7 +213,7 @@ function rev_map(f, l) { hd: Curry._1(f, param.hd), tl: accu }; - continue ; + continue; }; } @@ -225,7 +225,7 @@ function iter(f, _param) { } Curry._1(f, param.hd); _param = param.tl; - continue ; + continue; }; } @@ -241,7 +241,7 @@ function iteri(f, l) { Curry._2(f, i, param.hd); _param = param.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -254,7 +254,7 @@ function fold_left(f, _accu, _l) { } _l = l.tl; _accu = Curry._2(f, accu, l.hd); - continue ; + continue; }; } @@ -307,7 +307,7 @@ function rev_map2(f, l1, l2) { hd: Curry._2(f, l1$1.hd, l2$1.hd), tl: accu }; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -335,7 +335,7 @@ function iter2(f, _l1, _l2) { Curry._2(f, l1.hd, l2.hd); _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -364,7 +364,7 @@ function fold_left2(f, _accu, _l1, _l2) { _l2 = l2.tl; _l1 = l1.tl; _accu = Curry._3(f, accu, l1.hd, l2.hd); - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -414,7 +414,7 @@ function for_all(p, _param) { return false; } _param = param.tl; - continue ; + continue; }; } @@ -428,7 +428,7 @@ function exists(p, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -443,7 +443,7 @@ function for_all2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -473,7 +473,7 @@ function exists2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -502,7 +502,7 @@ function mem(x, _set) { return true; } _set = set.tl; - continue ; + continue; }; } @@ -516,7 +516,7 @@ function memq(x, _set) { return true; } _set = set.tl; - continue ; + continue; }; } @@ -529,7 +529,7 @@ function assoc(x, _param) { return match[1]; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -549,7 +549,7 @@ function assoc_opt(x, _param) { return Caml_option.some(match[1]); } _param = param.tl; - continue ; + continue; }; } @@ -562,7 +562,7 @@ function assq(x, _param) { return match[1]; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -582,7 +582,7 @@ function assq_opt(x, _param) { return Caml_option.some(match[1]); } _param = param.tl; - continue ; + continue; }; } @@ -596,7 +596,7 @@ function mem_assoc(x, _map) { return true; } _map = map.tl; - continue ; + continue; }; } @@ -610,7 +610,7 @@ function mem_assq(x, _map) { return true; } _map = map.tl; - continue ; + continue; }; } @@ -655,7 +655,7 @@ function find(p, _param) { return x; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -675,7 +675,7 @@ function find_opt(p, _param) { return Caml_option.some(x); } _param = param.tl; - continue ; + continue; }; } @@ -697,10 +697,10 @@ function find_all(p) { hd: x, tl: accu }; - continue ; + continue; } _param = l; - continue ; + continue; }; }; } @@ -727,14 +727,14 @@ function partition(p, l) { hd: x, tl: yes }; - continue ; + continue; } _param = l$1; _no = { hd: x, tl: no }; - continue ; + continue; }; } @@ -818,7 +818,7 @@ function chop(_k, _l) { if (l) { _l = l.tl; _k = k - 1 | 0; - continue ; + continue; } throw { RE_EXN_ID: "Assert_failure", @@ -969,14 +969,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -1115,14 +1115,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let len = length(l); @@ -1347,7 +1347,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 > 0) { _accu = { @@ -1355,14 +1355,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -1578,7 +1578,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 < 0) { _accu = { @@ -1586,14 +1586,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let len = length(l); @@ -1620,7 +1620,7 @@ function compare_lengths(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1642,7 +1642,7 @@ function compare_length_with(_l, _n) { } _n = n - 1 | 0; _l = l.tl; - continue ; + continue; }; } diff --git a/lib/es6/map.js b/lib/es6/map.js index dac7b47369..4caa3d1cef 100644 --- a/lib/es6/map.js +++ b/lib/es6/map.js @@ -161,7 +161,7 @@ function Make(funarg) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -193,14 +193,14 @@ function Make(funarg) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -229,14 +229,14 @@ function Make(funarg) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -268,14 +268,14 @@ function Make(funarg) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -304,14 +304,14 @@ function Make(funarg) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -325,7 +325,7 @@ function Make(funarg) { return Caml_option.some(param.d); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let mem = function (x, _param) { @@ -339,7 +339,7 @@ function Make(funarg) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let min_binding = function (_param) { @@ -359,7 +359,7 @@ function Make(funarg) { ]; } _param = l; - continue ; + continue; }; }; let min_binding_opt = function (_param) { @@ -376,7 +376,7 @@ function Make(funarg) { ]; } _param = l; - continue ; + continue; }; }; let max_binding = function (_param) { @@ -396,7 +396,7 @@ function Make(funarg) { ]; } _param = r; - continue ; + continue; }; }; let max_binding_opt = function (_param) { @@ -413,7 +413,7 @@ function Make(funarg) { ]; } _param = r; - continue ; + continue; }; }; let remove_min_binding = function (param) { @@ -532,7 +532,7 @@ function Make(funarg) { iter(f, param.l); Curry._2(f, param.v, param.d); _param = param.r; - continue ; + continue; }; }; let map = function (f, param) { @@ -577,7 +577,7 @@ function Make(funarg) { } _accu = Curry._3(f, m.v, m.d, fold(f, m.l, accu)); _m = m.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -593,7 +593,7 @@ function Make(funarg) { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -609,7 +609,7 @@ function Make(funarg) { return true; } _param = param.r; - continue ; + continue; }; }; let add_min_binding = function (k, x, param) { @@ -820,7 +820,7 @@ function Make(funarg) { _3: e }; _m = m.l; - continue ; + continue; }; }; let compare = function (cmp, m1, m2) { @@ -849,7 +849,7 @@ function Make(funarg) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let equal = function (cmp, m1, m2) { @@ -876,7 +876,7 @@ function Make(funarg) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let cardinal = function (param) { @@ -901,7 +901,7 @@ function Make(funarg) { ], tl: bindings_aux(accu, param.r) }; - continue ; + continue; }; }; let bindings = function (s) { diff --git a/lib/es6/mapLabels.js b/lib/es6/mapLabels.js index 2d2f67d5c4..445afe4557 100644 --- a/lib/es6/mapLabels.js +++ b/lib/es6/mapLabels.js @@ -161,7 +161,7 @@ function Make(Ord) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first_aux = function (_v0, _d0, f, _param) { @@ -180,10 +180,10 @@ function Make(Ord) { _param = param.l; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -200,7 +200,7 @@ function Make(Ord) { return find_first_aux(v, param.d, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_first_opt_aux = function (_v0, _d0, f, _param) { @@ -219,10 +219,10 @@ function Make(Ord) { _param = param.l; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -236,7 +236,7 @@ function Make(Ord) { return find_first_opt_aux(v, param.d, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_last_aux = function (_v0, _d0, f, _param) { @@ -255,10 +255,10 @@ function Make(Ord) { _param = param.r; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -275,7 +275,7 @@ function Make(Ord) { return find_last_aux(v, param.d, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_last_opt_aux = function (_v0, _d0, f, _param) { @@ -294,10 +294,10 @@ function Make(Ord) { _param = param.r; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -311,7 +311,7 @@ function Make(Ord) { return find_last_opt_aux(v, param.d, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -325,7 +325,7 @@ function Make(Ord) { return Caml_option.some(param.d); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let mem = function (x, _param) { @@ -339,7 +339,7 @@ function Make(Ord) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let min_binding = function (_param) { @@ -359,7 +359,7 @@ function Make(Ord) { ]; } _param = l; - continue ; + continue; }; }; let min_binding_opt = function (_param) { @@ -376,7 +376,7 @@ function Make(Ord) { ]; } _param = l; - continue ; + continue; }; }; let max_binding = function (_param) { @@ -396,7 +396,7 @@ function Make(Ord) { ]; } _param = r; - continue ; + continue; }; }; let max_binding_opt = function (_param) { @@ -413,7 +413,7 @@ function Make(Ord) { ]; } _param = r; - continue ; + continue; }; }; let remove_min_binding = function (param) { @@ -532,7 +532,7 @@ function Make(Ord) { iter(f, param.l); Curry._2(f, param.v, param.d); _param = param.r; - continue ; + continue; }; }; let map = function (f, param) { @@ -577,7 +577,7 @@ function Make(Ord) { } _accu = Curry._3(f, m.v, m.d, fold(f, m.l, accu)); _m = m.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -593,7 +593,7 @@ function Make(Ord) { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -609,7 +609,7 @@ function Make(Ord) { return true; } _param = param.r; - continue ; + continue; }; }; let add_min_binding = function (k, x, param) { @@ -820,7 +820,7 @@ function Make(Ord) { _3: e }; _m = m.l; - continue ; + continue; }; }; let compare = function (cmp, m1, m2) { @@ -849,7 +849,7 @@ function Make(Ord) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let equal = function (cmp, m1, m2) { @@ -876,7 +876,7 @@ function Make(Ord) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let cardinal = function (param) { @@ -901,7 +901,7 @@ function Make(Ord) { ], tl: bindings_aux(accu, param.r) }; - continue ; + continue; }; }; let bindings = function (s) { diff --git a/lib/es6/moreLabels.js b/lib/es6/moreLabels.js index 8048164a58..a77c3216dc 100644 --- a/lib/es6/moreLabels.js +++ b/lib/es6/moreLabels.js @@ -191,7 +191,7 @@ let $$Map = { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first_aux = function (_v0, _d0, f, _param) { @@ -210,10 +210,10 @@ let $$Map = { _param = param.l; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -230,7 +230,7 @@ let $$Map = { return find_first_aux(v, param.d, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_first_opt_aux = function (_v0, _d0, f, _param) { @@ -249,10 +249,10 @@ let $$Map = { _param = param.l; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -266,7 +266,7 @@ let $$Map = { return find_first_opt_aux(v, param.d, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_last_aux = function (_v0, _d0, f, _param) { @@ -285,10 +285,10 @@ let $$Map = { _param = param.r; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -305,7 +305,7 @@ let $$Map = { return find_last_aux(v, param.d, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_last_opt_aux = function (_v0, _d0, f, _param) { @@ -324,10 +324,10 @@ let $$Map = { _param = param.r; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -341,7 +341,7 @@ let $$Map = { return find_last_opt_aux(v, param.d, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -355,7 +355,7 @@ let $$Map = { return Caml_option.some(param.d); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let mem = function (x, _param) { @@ -369,7 +369,7 @@ let $$Map = { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let min_binding = function (_param) { @@ -389,7 +389,7 @@ let $$Map = { ]; } _param = l; - continue ; + continue; }; }; let min_binding_opt = function (_param) { @@ -406,7 +406,7 @@ let $$Map = { ]; } _param = l; - continue ; + continue; }; }; let max_binding = function (_param) { @@ -426,7 +426,7 @@ let $$Map = { ]; } _param = r; - continue ; + continue; }; }; let max_binding_opt = function (_param) { @@ -443,7 +443,7 @@ let $$Map = { ]; } _param = r; - continue ; + continue; }; }; let remove_min_binding = function (param) { @@ -562,7 +562,7 @@ let $$Map = { iter(f, param.l); Curry._2(f, param.v, param.d); _param = param.r; - continue ; + continue; }; }; let map = function (f, param) { @@ -607,7 +607,7 @@ let $$Map = { } _accu = Curry._3(f, m.v, m.d, fold(f, m.l, accu)); _m = m.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -623,7 +623,7 @@ let $$Map = { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -639,7 +639,7 @@ let $$Map = { return true; } _param = param.r; - continue ; + continue; }; }; let add_min_binding = function (k, x, param) { @@ -850,7 +850,7 @@ let $$Map = { _3: e }; _m = m.l; - continue ; + continue; }; }; let compare = function (cmp, m1, m2) { @@ -879,7 +879,7 @@ let $$Map = { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let equal = function (cmp, m1, m2) { @@ -906,7 +906,7 @@ let $$Map = { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let cardinal = function (param) { @@ -931,7 +931,7 @@ let $$Map = { ], tl: bindings_aux(accu, param.r) }; - continue ; + continue; }; }; let bindings = function (s) { @@ -1143,7 +1143,7 @@ let $$Set = { return param.v; } _param = l; - continue ; + continue; }; }; let min_elt_opt = function (_param) { @@ -1157,7 +1157,7 @@ let $$Set = { return Caml_option.some(param.v); } _param = l; - continue ; + continue; }; }; let max_elt = function (_param) { @@ -1174,7 +1174,7 @@ let $$Set = { return param.v; } _param = r; - continue ; + continue; }; }; let max_elt_opt = function (_param) { @@ -1188,7 +1188,7 @@ let $$Set = { return Caml_option.some(param.v); } _param = r; - continue ; + continue; }; }; let remove_min_elt = function (param) { @@ -1276,7 +1276,7 @@ let $$Set = { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let remove = function (x, param) { @@ -1379,7 +1379,7 @@ let $$Set = { _2: e }; _s = s.l; - continue ; + continue; }; }; let compare_aux = function (_e1, _e2) { @@ -1402,7 +1402,7 @@ let $$Set = { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; }; let compare = function (s1, s2) { @@ -1433,7 +1433,7 @@ let $$Set = { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -1446,7 +1446,7 @@ let $$Set = { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -1458,7 +1458,7 @@ let $$Set = { return false; } _s1 = l1; - continue ; + continue; }; }; let iter = function (f, _param) { @@ -1470,7 +1470,7 @@ let $$Set = { iter(f, param.l); Curry._1(f, param.v); _param = param.r; - continue ; + continue; }; }; let fold = function (f, _s, _accu) { @@ -1482,7 +1482,7 @@ let $$Set = { } _accu = Curry._2(f, s.v, fold(f, s.l, accu)); _s = s.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -1498,7 +1498,7 @@ let $$Set = { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -1514,7 +1514,7 @@ let $$Set = { return true; } _param = param.r; - continue ; + continue; }; }; let filter = function (p, param) { @@ -1583,7 +1583,7 @@ let $$Set = { hd: param.v, tl: elements_aux(accu, param.r) }; - continue ; + continue; }; }; let elements = function (s) { @@ -1604,7 +1604,7 @@ let $$Set = { return v; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first_aux = function (_v0, f, _param) { @@ -1618,10 +1618,10 @@ let $$Set = { if (Curry._1(f, v)) { _param = param.l; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -1638,7 +1638,7 @@ let $$Set = { return find_first_aux(v, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_first_opt_aux = function (_v0, f, _param) { @@ -1652,10 +1652,10 @@ let $$Set = { if (Curry._1(f, v)) { _param = param.l; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -1669,7 +1669,7 @@ let $$Set = { return find_first_opt_aux(v, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_last_aux = function (_v0, f, _param) { @@ -1683,10 +1683,10 @@ let $$Set = { if (Curry._1(f, v)) { _param = param.r; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -1703,7 +1703,7 @@ let $$Set = { return find_last_aux(v, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_last_opt_aux = function (_v0, f, _param) { @@ -1717,10 +1717,10 @@ let $$Set = { if (Curry._1(f, v)) { _param = param.r; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -1734,7 +1734,7 @@ let $$Set = { return find_last_opt_aux(v, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -1749,7 +1749,7 @@ let $$Set = { return Caml_option.some(v); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let try_join = function (l, v, r) { diff --git a/lib/es6/parsing.js b/lib/es6/parsing.js index 18516a846a..6e3c9d0597 100644 --- a/lib/es6/parsing.js +++ b/lib/es6/parsing.js @@ -86,7 +86,7 @@ function yyparse(tables, start, lexer, lexbuf) { env.symb_end = lexbuf.lex_curr_p; _arg = t; _cmd = "Token_read"; - continue ; + continue; case "Raise_parse_error" : throw { RE_EXN_ID: Parse_error, @@ -96,12 +96,12 @@ function yyparse(tables, start, lexer, lexbuf) { grow_stacks(); _arg = undefined; _cmd = "Stacks_grown_1"; - continue ; + continue; case "Grow_stacks_2" : grow_stacks(); _arg = undefined; _cmd = "Stacks_grown_2"; - continue ; + continue; case "Compute_semantic_action" : let match$1; try { @@ -123,12 +123,12 @@ function yyparse(tables, start, lexer, lexbuf) { } _arg = match$1[1]; _cmd = match$1[0]; - continue ; + continue; case "Call_error_function" : Curry._1(tables.error_function, "syntax error"); _arg = undefined; _cmd = "Error_detected"; - continue ; + continue; } }; @@ -174,7 +174,7 @@ function symbol_start_pos(param) { return st; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/pervasives.js b/lib/es6/pervasives.js index 8cf6078478..b78aff7d9c 100644 --- a/lib/es6/pervasives.js +++ b/lib/es6/pervasives.js @@ -133,13 +133,13 @@ function valid_float_lexem(s) { return s; } _i = i + 1 | 0; - continue ; + continue; } if (match !== 45) { return s; } _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/pervasivesU.js b/lib/es6/pervasivesU.js index 8d63399296..bc7456a932 100644 --- a/lib/es6/pervasivesU.js +++ b/lib/es6/pervasivesU.js @@ -132,13 +132,13 @@ function valid_float_lexem(s) { return s; } _i = i + 1 | 0; - continue ; + continue; } if (match !== 45) { return s; } _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/queue.js b/lib/es6/queue.js index 7c30db70b0..11051aa5b2 100644 --- a/lib/es6/queue.js +++ b/lib/es6/queue.js @@ -95,7 +95,7 @@ function copy(q) { } _cell = next; _prev = res; - continue ; + continue; }; } @@ -117,7 +117,7 @@ function iter(f, q) { let next = cell.next; Curry._1(f, cell.content); _cell = next; - continue ; + continue; }; } @@ -134,7 +134,7 @@ function fold(f, accu, q) { let accu$2 = Curry._2(f, accu$1, cell.content); _cell = next; _accu = accu$2; - continue ; + continue; }; } diff --git a/lib/es6/random.js b/lib/es6/random.js index 85a0f47fca..58654de440 100644 --- a/lib/es6/random.js +++ b/lib/es6/random.js @@ -87,7 +87,7 @@ function $$int(s, bound) { if ((r - v | 0) <= ((1073741823 - bound | 0) + 1 | 0)) { return v; } - continue ; + continue; }; } @@ -107,7 +107,7 @@ function int32(s, bound) { if ((r - v | 0) <= ((Int32.max_int - bound | 0) + 1 | 0)) { return v; } - continue ; + continue; }; } @@ -128,7 +128,7 @@ function int64(s, bound) { if (!Caml.i64_gt(Caml_int64.sub(r, v), Caml_int64.add(Caml_int64.sub(Int64.max_int, bound), Caml_int64.one))) { return v; } - continue ; + continue; }; } diff --git a/lib/es6/set.js b/lib/es6/set.js index ca794319ea..97274c993f 100644 --- a/lib/es6/set.js +++ b/lib/es6/set.js @@ -170,7 +170,7 @@ function Make(funarg) { return param.v; } _param = l; - continue ; + continue; }; }; let min_elt_opt = function (_param) { @@ -184,7 +184,7 @@ function Make(funarg) { return Caml_option.some(param.v); } _param = l; - continue ; + continue; }; }; let max_elt = function (_param) { @@ -201,7 +201,7 @@ function Make(funarg) { return param.v; } _param = r; - continue ; + continue; }; }; let max_elt_opt = function (_param) { @@ -215,7 +215,7 @@ function Make(funarg) { return Caml_option.some(param.v); } _param = r; - continue ; + continue; }; }; let remove_min_elt = function (param) { @@ -294,7 +294,7 @@ function Make(funarg) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let remove = function (x, param) { @@ -403,7 +403,7 @@ function Make(funarg) { _2: e }; _s = s.l; - continue ; + continue; }; }; let compare = function (s1, s2) { @@ -428,7 +428,7 @@ function Make(funarg) { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; }; let equal = function (s1, s2) { @@ -456,7 +456,7 @@ function Make(funarg) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -469,7 +469,7 @@ function Make(funarg) { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -481,7 +481,7 @@ function Make(funarg) { return false; } _s1 = l1; - continue ; + continue; }; }; let iter = function (f, _param) { @@ -493,7 +493,7 @@ function Make(funarg) { iter(f, param.l); Curry._1(f, param.v); _param = param.r; - continue ; + continue; }; }; let fold = function (f, _s, _accu) { @@ -505,7 +505,7 @@ function Make(funarg) { } _accu = Curry._2(f, s.v, fold(f, s.l, accu)); _s = s.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -521,7 +521,7 @@ function Make(funarg) { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -537,7 +537,7 @@ function Make(funarg) { return true; } _param = param.r; - continue ; + continue; }; }; let filter = function (p, param) { @@ -606,7 +606,7 @@ function Make(funarg) { hd: param.v, tl: elements_aux(accu, param.r) }; - continue ; + continue; }; }; let elements = function (s) { @@ -627,7 +627,7 @@ function Make(funarg) { return v; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -653,14 +653,14 @@ function Make(funarg) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -683,14 +683,14 @@ function Make(funarg) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -716,14 +716,14 @@ function Make(funarg) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -746,14 +746,14 @@ function Make(funarg) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -768,7 +768,7 @@ function Make(funarg) { return Caml_option.some(v); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let map = function (f, param) { diff --git a/lib/es6/setLabels.js b/lib/es6/setLabels.js index 0ffee825bb..64e141dfd4 100644 --- a/lib/es6/setLabels.js +++ b/lib/es6/setLabels.js @@ -170,7 +170,7 @@ function Make(Ord) { return param.v; } _param = l; - continue ; + continue; }; }; let min_elt_opt = function (_param) { @@ -184,7 +184,7 @@ function Make(Ord) { return Caml_option.some(param.v); } _param = l; - continue ; + continue; }; }; let max_elt = function (_param) { @@ -201,7 +201,7 @@ function Make(Ord) { return param.v; } _param = r; - continue ; + continue; }; }; let max_elt_opt = function (_param) { @@ -215,7 +215,7 @@ function Make(Ord) { return Caml_option.some(param.v); } _param = r; - continue ; + continue; }; }; let remove_min_elt = function (param) { @@ -303,7 +303,7 @@ function Make(Ord) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let remove = function (x, param) { @@ -406,7 +406,7 @@ function Make(Ord) { _2: e }; _s = s.l; - continue ; + continue; }; }; let compare_aux = function (_e1, _e2) { @@ -429,7 +429,7 @@ function Make(Ord) { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; }; let compare = function (s1, s2) { @@ -460,7 +460,7 @@ function Make(Ord) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -473,7 +473,7 @@ function Make(Ord) { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -485,7 +485,7 @@ function Make(Ord) { return false; } _s1 = l1; - continue ; + continue; }; }; let iter = function (f, _param) { @@ -497,7 +497,7 @@ function Make(Ord) { iter(f, param.l); Curry._1(f, param.v); _param = param.r; - continue ; + continue; }; }; let fold = function (f, _s, _accu) { @@ -509,7 +509,7 @@ function Make(Ord) { } _accu = Curry._2(f, s.v, fold(f, s.l, accu)); _s = s.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -525,7 +525,7 @@ function Make(Ord) { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -541,7 +541,7 @@ function Make(Ord) { return true; } _param = param.r; - continue ; + continue; }; }; let filter = function (p, param) { @@ -610,7 +610,7 @@ function Make(Ord) { hd: param.v, tl: elements_aux(accu, param.r) }; - continue ; + continue; }; }; let elements = function (s) { @@ -631,7 +631,7 @@ function Make(Ord) { return v; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first_aux = function (_v0, f, _param) { @@ -645,10 +645,10 @@ function Make(Ord) { if (Curry._1(f, v)) { _param = param.l; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -665,7 +665,7 @@ function Make(Ord) { return find_first_aux(v, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_first_opt_aux = function (_v0, f, _param) { @@ -679,10 +679,10 @@ function Make(Ord) { if (Curry._1(f, v)) { _param = param.l; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -696,7 +696,7 @@ function Make(Ord) { return find_first_opt_aux(v, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_last_aux = function (_v0, f, _param) { @@ -710,10 +710,10 @@ function Make(Ord) { if (Curry._1(f, v)) { _param = param.r; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -730,7 +730,7 @@ function Make(Ord) { return find_last_aux(v, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_last_opt_aux = function (_v0, f, _param) { @@ -744,10 +744,10 @@ function Make(Ord) { if (Curry._1(f, v)) { _param = param.r; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -761,7 +761,7 @@ function Make(Ord) { return find_last_opt_aux(v, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -776,7 +776,7 @@ function Make(Ord) { return Caml_option.some(v); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let try_join = function (l, v, r) { diff --git a/lib/es6/sort.js b/lib/es6/sort.js index 90435e1bb2..2f4f8b4c1f 100644 --- a/lib/es6/sort.js +++ b/lib/es6/sort.js @@ -82,7 +82,7 @@ function list(order, l) { return param.hd; } _param = merge2(param); - continue ; + continue; }; } @@ -137,11 +137,11 @@ function array(cmp, arr) { if ((j - lo | 0) <= (hi - i | 0)) { qsort(lo, j); _lo = i; - continue ; + continue; } qsort(i, hi); _hi = j; - continue ; + continue; }; }; qsort(0, arr.length - 1 | 0); diff --git a/lib/es6/stream.js b/lib/es6/stream.js index b8e61172c9..9030e2155a 100644 --- a/lib/es6/stream.js +++ b/lib/es6/stream.js @@ -42,7 +42,7 @@ function get_data(count, _d) { let match = get_data(count, d._0); if (typeof match !== "object") { _d = d2; - continue ; + continue; } if (match.TAG === "Scons") { return { @@ -66,7 +66,7 @@ function get_data(count, _d) { }; case "Slazy" : _d = CamlinternalLazy.force(d._0); - continue ; + continue; case "Sgen" : let g = d._0; let match$1 = g.curr; @@ -128,7 +128,7 @@ function peek_data(s) { }; case "Slazy" : s.data = CamlinternalLazy.force(f._0); - continue ; + continue; case "Sgen" : let g = f._0; let a = g.curr; @@ -176,7 +176,7 @@ function junk_data(s) { if (match$1 === undefined) { return; } - continue ; + continue; }; } @@ -264,7 +264,7 @@ function iter(f, strm) { junk(strm); Curry._1(f, Caml_option.valFromOption(a)); _param = undefined; - continue ; + continue; }; } diff --git a/lib/es6/string.js b/lib/es6/string.js index 9b315fbf7c..2cd1d65a20 100644 --- a/lib/es6/string.js +++ b/lib/es6/string.js @@ -71,13 +71,13 @@ function escaped(s) { return true; } _i = i + 1 | 0; - continue ; + continue; } if (match > 91 || match < 35) { return true; } _i = i + 1 | 0; - continue ; + continue; }; }; if (needs_escape(0)) { @@ -100,7 +100,7 @@ function index_rec(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -118,7 +118,7 @@ function index_rec_opt(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -163,7 +163,7 @@ function rindex_rec(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -192,7 +192,7 @@ function rindex_rec_opt(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/es6/stringLabels.js b/lib/es6/stringLabels.js index fdd59a7f71..6c3f936fa9 100644 --- a/lib/es6/stringLabels.js +++ b/lib/es6/stringLabels.js @@ -73,13 +73,13 @@ function escaped(s) { return true; } _i = i + 1 | 0; - continue ; + continue; } if (match > 91 || match < 35) { return true; } _i = i + 1 | 0; - continue ; + continue; }; }; if (needs_escape(0)) { @@ -102,7 +102,7 @@ function index_rec(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -120,7 +120,7 @@ function index_rec_opt(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -165,7 +165,7 @@ function rindex_rec(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -194,7 +194,7 @@ function rindex_rec_opt(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/arg.js b/lib/js/arg.js index daa48ce130..4fd41bf5dc 100644 --- a/lib/js/arg.js +++ b/lib/js/arg.js @@ -30,7 +30,7 @@ function assoc3(x, _l) { return match[1]; } _l = l.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -592,7 +592,7 @@ function second_word(s) { return n; } _n = n + 1 | 0; - continue ; + continue; }; }; let n; diff --git a/lib/js/array.js b/lib/js/array.js index d68763211c..c615dd5f7e 100644 --- a/lib/js/array.js +++ b/lib/js/array.js @@ -174,7 +174,7 @@ function to_list(a) { tl: res }; _i = i - 1 | 0; - continue ; + continue; }; } @@ -187,7 +187,7 @@ function list_length(_accu, _param) { } _param = param.tl; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -207,7 +207,7 @@ function of_list(param) { a[i] = param$1.hd; _param = param$1.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -239,7 +239,7 @@ function exists(p, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -255,7 +255,7 @@ function for_all(p, a) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -271,7 +271,7 @@ function mem(x, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -287,7 +287,7 @@ function memq(x, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -329,7 +329,7 @@ function sort(cmp, a) { } Caml_array.set(a, i$1, Caml_array.get(a, j)); _i = j; - continue ; + continue; }; } catch (raw_i){ @@ -348,7 +348,7 @@ function sort(cmp, a) { let j = maxson(l, i$1); Caml_array.set(a, i$1, Caml_array.get(a, j)); _i = j; - continue ; + continue; }; } catch (raw_i){ @@ -382,7 +382,7 @@ function sort(cmp, a) { return Caml_array.set(a, 0, e); } _i = father; - continue ; + continue; }; }; let l = a.length; @@ -426,7 +426,7 @@ function stable_sort(cmp, a) { _d = d + 1 | 0; _s1 = Caml_array.get(a, i1$1); _i1 = i1$1; - continue ; + continue; } Caml_array.set(dst, d, s2); let i2$1 = i2 + 1 | 0; @@ -436,7 +436,7 @@ function stable_sort(cmp, a) { _d = d + 1 | 0; _s2 = Caml_array.get(src2, i2$1); _i2 = i2$1; - continue ; + continue; }; }; let isortto = function (srcofs, dst, dstofs, len) { diff --git a/lib/js/arrayLabels.js b/lib/js/arrayLabels.js index 196d851486..ed3f4feae2 100644 --- a/lib/js/arrayLabels.js +++ b/lib/js/arrayLabels.js @@ -174,7 +174,7 @@ function to_list(a) { tl: res }; _i = i - 1 | 0; - continue ; + continue; }; } @@ -187,7 +187,7 @@ function list_length(_accu, _param) { } _param = param.tl; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -207,7 +207,7 @@ function of_list(param) { a[i] = param$1.hd; _param = param$1.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -239,7 +239,7 @@ function exists(p, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -255,7 +255,7 @@ function for_all(p, a) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -271,7 +271,7 @@ function mem(x, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -287,7 +287,7 @@ function memq(x, a) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -329,7 +329,7 @@ function sort(cmp, a) { } Caml_array.set(a, i$1, Caml_array.get(a, j)); _i = j; - continue ; + continue; }; } catch (raw_i){ @@ -348,7 +348,7 @@ function sort(cmp, a) { let j = maxson(l, i$1); Caml_array.set(a, i$1, Caml_array.get(a, j)); _i = j; - continue ; + continue; }; } catch (raw_i){ @@ -382,7 +382,7 @@ function sort(cmp, a) { return Caml_array.set(a, 0, e); } _i = father; - continue ; + continue; }; }; let l = a.length; @@ -426,7 +426,7 @@ function stable_sort(cmp, a) { _d = d + 1 | 0; _s1 = Caml_array.get(a, i1$1); _i1 = i1$1; - continue ; + continue; } Caml_array.set(dst, d, s2); let i2$1 = i2 + 1 | 0; @@ -436,7 +436,7 @@ function stable_sort(cmp, a) { _d = d + 1 | 0; _s2 = Caml_array.get(src2, i2$1); _i2 = i2$1; - continue ; + continue; }; }; let isortto = function (srcofs, dst, dstofs, len) { diff --git a/lib/js/belt_Array.js b/lib/js/belt_Array.js index 8e35e03d44..c20902dd62 100644 --- a/lib/js/belt_Array.js +++ b/lib/js/belt_Array.js @@ -496,7 +496,7 @@ function everyU(arr, b) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -516,7 +516,7 @@ function someU(arr, b) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -534,7 +534,7 @@ function everyAux2(arr1, arr2, _i, b, len) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -558,7 +558,7 @@ function some2U(a, b, p) { return true; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -599,7 +599,7 @@ function cmpU(a, b, p) { return c; } _i = i + 1 | 0; - continue ; + continue; }; } } @@ -667,7 +667,7 @@ function joinWithU(a, sep, toString) { } _res = res + (toString(a[i]) + sep); _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/belt_HashMap.js b/lib/js/belt_HashMap.js index f9d0ec30f3..ba9697458a 100644 --- a/lib/js/belt_HashMap.js +++ b/lib/js/belt_HashMap.js @@ -23,7 +23,7 @@ function copyBucketReHash(hash, h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -39,7 +39,7 @@ function replaceInBucket(eq, key, info, _cell) { return true; } _cell = cell$1; - continue ; + continue; }; } @@ -124,7 +124,7 @@ function remove(h, key) { } _bucket = cell_next; _prec = bucket$1; - continue ; + continue; }; } } @@ -162,7 +162,7 @@ function get(h, key) { return Caml_option.some(buckets.value); } _buckets = buckets.next; - continue ; + continue; }; } } @@ -186,7 +186,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/js/belt_HashMapInt.js b/lib/js/belt_HashMapInt.js index 94ee32c1d1..7c91e287d5 100644 --- a/lib/js/belt_HashMapInt.js +++ b/lib/js/belt_HashMapInt.js @@ -20,7 +20,7 @@ function copyBucketReHash(h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -36,7 +36,7 @@ function replaceInBucket(key, info, _cell) { return true; } _cell = cell$1; - continue ; + continue; }; } @@ -114,7 +114,7 @@ function remove(h, key) { } _buckets = cell_next; _prec = buckets; - continue ; + continue; }; } } @@ -153,7 +153,7 @@ function get(h, key) { return Caml_option.some(buckets.value); } _buckets = buckets.next; - continue ; + continue; }; } } @@ -176,7 +176,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/js/belt_HashMapString.js b/lib/js/belt_HashMapString.js index 5f088b503d..258b989a29 100644 --- a/lib/js/belt_HashMapString.js +++ b/lib/js/belt_HashMapString.js @@ -20,7 +20,7 @@ function copyBucketReHash(h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -36,7 +36,7 @@ function replaceInBucket(key, info, _cell) { return true; } _cell = cell$1; - continue ; + continue; }; } @@ -114,7 +114,7 @@ function remove(h, key) { } _buckets = cell_next; _prec = buckets; - continue ; + continue; }; } } @@ -153,7 +153,7 @@ function get(h, key) { return Caml_option.some(buckets.value); } _buckets = buckets.next; - continue ; + continue; }; } } @@ -176,7 +176,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/js/belt_HashSet.js b/lib/js/belt_HashSet.js index 58f4b69710..eba89cbe96 100644 --- a/lib/js/belt_HashSet.js +++ b/lib/js/belt_HashSet.js @@ -18,7 +18,7 @@ function copyBucket(hash, h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -52,7 +52,7 @@ function remove(h, key) { } _cell = cell_next; _prec = cell; - continue ; + continue; }; } else { return; @@ -68,7 +68,7 @@ function addBucket(h, key, _cell, eq) { let n = cell.next; if (n !== undefined) { _cell = n; - continue ; + continue; } h.size = h.size + 1 | 0; cell.next = { @@ -139,7 +139,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/js/belt_HashSetInt.js b/lib/js/belt_HashSetInt.js index 7762902c4d..1a38985e11 100644 --- a/lib/js/belt_HashSetInt.js +++ b/lib/js/belt_HashSetInt.js @@ -19,7 +19,7 @@ function copyBucket(h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -52,7 +52,7 @@ function remove(h, key) { } _cell = cell_next; _prec = cell; - continue ; + continue; }; } else { return; @@ -68,7 +68,7 @@ function addBucket(h, key, _cell) { let n = cell.next; if (n !== undefined) { _cell = n; - continue ; + continue; } h.size = h.size + 1 | 0; cell.next = { @@ -134,7 +134,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/js/belt_HashSetString.js b/lib/js/belt_HashSetString.js index af934f57e4..f8106cc738 100644 --- a/lib/js/belt_HashSetString.js +++ b/lib/js/belt_HashSetString.js @@ -19,7 +19,7 @@ function copyBucket(h_buckets, ndata_tail, _old_bucket) { } ndata_tail[nidx] = old_bucket; _old_bucket = old_bucket.next; - continue ; + continue; }; } @@ -52,7 +52,7 @@ function remove(h, key) { } _cell = cell_next; _prec = cell; - continue ; + continue; }; } else { return; @@ -68,7 +68,7 @@ function addBucket(h, key, _cell) { let n = cell.next; if (n !== undefined) { _cell = n; - continue ; + continue; } h.size = h.size + 1 | 0; cell.next = { @@ -134,7 +134,7 @@ function has(h, key) { return false; } _cell = nextCell; - continue ; + continue; }; } else { return false; diff --git a/lib/js/belt_List.js b/lib/js/belt_List.js index 650026be49..35818de614 100644 --- a/lib/js/belt_List.js +++ b/lib/js/belt_List.js @@ -63,7 +63,7 @@ function get(x, n) { } _n = n$1 - 1 | 0; _x = x$1.tl; - continue ; + continue; }; } } @@ -86,7 +86,7 @@ function getExn(x, n) { } _n = n$1 - 1 | 0; _x = x$1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -113,12 +113,12 @@ function partitionAux(p, _cell, _precX, _precY) { precX.tl = next; _precX = next; _cell = t; - continue ; + continue; } precY.tl = next; _precY = next; _cell = t; - continue ; + continue; }; } @@ -144,7 +144,7 @@ function splitAux(_cell, _precX, _precY) { _precY = nextB; _precX = nextA; _cell = cell.tl; - continue ; + continue; }; } @@ -162,7 +162,7 @@ function copyAuxCont(_cellX, _prec) { prec.tl = next; _prec = next; _cellX = cellX.tl; - continue ; + continue; }; } @@ -183,10 +183,10 @@ function copyAuxWitFilter(f, _cellX, _prec) { prec.tl = next; _prec = next; _cellX = t; - continue ; + continue; } _cellX = t; - continue ; + continue; }; } @@ -209,11 +209,11 @@ function copyAuxWithFilterIndex(f, _cellX, _prec, _i) { _i = i + 1 | 0; _prec = next; _cellX = t; - continue ; + continue; } _i = i + 1 | 0; _cellX = t; - continue ; + continue; }; } @@ -234,10 +234,10 @@ function copyAuxWitFilterMap(f, _cellX, _prec) { prec.tl = next; _prec = next; _cellX = t; - continue ; + continue; } _cellX = t; - continue ; + continue; }; } @@ -261,7 +261,7 @@ function removeAssocAuxWithMap(_cellX, x, _prec, f) { prec.tl = next; _prec = next; _cellX = t; - continue ; + continue; }; } @@ -291,7 +291,7 @@ function setAssocAuxWithMap(_cellX, x, k, _prec, eq) { prec.tl = next; _prec = next; _cellX = t; - continue ; + continue; }; } @@ -309,7 +309,7 @@ function copyAuxWithMap(_cellX, _prec, f) { prec.tl = next; _prec = next; _cellX = cellX.tl; - continue ; + continue; }; } @@ -335,7 +335,7 @@ function zipAux(_cellX, _cellY, _prec) { _prec = next; _cellY = cellY.tl; _cellX = cellX.tl; - continue ; + continue; }; } @@ -358,7 +358,7 @@ function copyAuxWithMap2(f, _cellX, _cellY, _prec) { _prec = next; _cellY = cellY.tl; _cellX = cellX.tl; - continue ; + continue; }; } @@ -378,7 +378,7 @@ function copyAuxWithMapI(f, _i, _cellX, _prec) { _prec = next; _cellX = cellX.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -401,7 +401,7 @@ function takeAux(_n, _cell, _prec) { _prec = cell$1; _cell = cell.tl; _n = n - 1 | 0; - continue ; + continue; }; } @@ -424,7 +424,7 @@ function splitAtAux(_n, _cell, _prec) { _prec = cell$1; _cell = cell.tl; _n = n - 1 | 0; - continue ; + continue; }; } @@ -466,7 +466,7 @@ function drop(lst, n) { } _n = n$1 - 1 | 0; _l = l.tl; - continue ; + continue; }; } } @@ -620,7 +620,7 @@ function length(xs) { } _acc = acc + 1 | 0; _x = x.tl; - continue ; + continue; }; } @@ -634,7 +634,7 @@ function fillAux(arr, _i, _x) { arr[i] = x.hd; _x = x.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -652,7 +652,7 @@ function fromArray(a) { tl: res }; _i = i - 1 | 0; - continue ; + continue; }; } @@ -681,7 +681,7 @@ function reverseConcat(_l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -696,7 +696,7 @@ function flattenAux(_prec, _xs) { if (xs) { _xs = xs.tl; _prec = copyAuxCont(xs.hd, prec); - continue ; + continue; } prec.tl = /* [] */0; return; @@ -719,7 +719,7 @@ function flatten(_xs) { return cell; } _xs = xs.tl; - continue ; + continue; }; } @@ -753,7 +753,7 @@ function mapReverseU(l, f) { hd: f(xs.hd), tl: accu }; - continue ; + continue; }; } @@ -769,7 +769,7 @@ function forEachU(_xs, f) { } f(xs.hd); _xs = xs.tl; - continue ; + continue; }; } @@ -789,7 +789,7 @@ function forEachWithIndexU(l, f) { f(i, xs.hd); _i = i + 1 | 0; _xs = xs.tl; - continue ; + continue; }; } @@ -806,7 +806,7 @@ function reduceU(_l, _accu, f) { } _accu = f(accu, l.hd); _l = l.tl; - continue ; + continue; }; } @@ -849,7 +849,7 @@ function reduceWithIndexU(l, acc, f) { _i = i + 1 | 0; _acc = f(acc$1, l$1.hd, i); _l = l$1.tl; - continue ; + continue; }; } @@ -877,7 +877,7 @@ function mapReverse2U(l1, l2, f) { }; _l2 = l2$1.tl; _l1 = l1$1.tl; - continue ; + continue; }; } @@ -898,7 +898,7 @@ function forEach2U(_l1, _l2, f) { f(l1.hd, l2.hd); _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -920,7 +920,7 @@ function reduce2U(_l1, _l2, _accu, f) { _accu = f(accu, l1.hd, l2.hd); _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -959,7 +959,7 @@ function everyU(_xs, p) { return false; } _xs = xs.tl; - continue ; + continue; }; } @@ -977,7 +977,7 @@ function someU(_xs, p) { return true; } _xs = xs.tl; - continue ; + continue; }; } @@ -1000,7 +1000,7 @@ function every2U(_l1, _l2, p) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1024,7 +1024,7 @@ function cmpByLength(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1048,7 +1048,7 @@ function cmpU(_l1, _l2, p) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1075,7 +1075,7 @@ function eqU(_l1, _l2, p) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1098,7 +1098,7 @@ function some2U(_l1, _l2, p) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1116,7 +1116,7 @@ function hasU(_xs, x, eq) { return true; } _xs = xs.tl; - continue ; + continue; }; } @@ -1135,7 +1135,7 @@ function getAssocU(_xs, x, eq) { return Caml_option.some(match[1]); } _xs = xs.tl; - continue ; + continue; }; } @@ -1153,7 +1153,7 @@ function hasAssocU(_xs, x, eq) { return true; } _xs = xs.tl; - continue ; + continue; }; } @@ -1250,7 +1250,7 @@ function getByU(_xs, p) { return Caml_option.some(x); } _xs = xs.tl; - continue ; + continue; }; } @@ -1275,7 +1275,7 @@ function keepU(_xs, p) { return cell; } _xs = t; - continue ; + continue; }; } @@ -1304,7 +1304,7 @@ function keepWithIndexU(xs, p) { } _i = i + 1 | 0; _xs = t; - continue ; + continue; }; } @@ -1329,7 +1329,7 @@ function keepMapU(_xs, p) { return cell; } _xs = t; - continue ; + continue; }; } diff --git a/lib/js/belt_MapDict.js b/lib/js/belt_MapDict.js index bbaf44782c..6109ffbccf 100644 --- a/lib/js/belt_MapDict.js +++ b/lib/js/belt_MapDict.js @@ -265,7 +265,7 @@ function removeMany(t, keys, cmp) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/js/belt_MapInt.js b/lib/js/belt_MapInt.js index be80d04159..e0b7e488e7 100644 --- a/lib/js/belt_MapInt.js +++ b/lib/js/belt_MapInt.js @@ -139,7 +139,7 @@ function removeMany(t, keys) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/js/belt_MapString.js b/lib/js/belt_MapString.js index 345b885af7..8503c91b0d 100644 --- a/lib/js/belt_MapString.js +++ b/lib/js/belt_MapString.js @@ -139,7 +139,7 @@ function removeMany(t, keys) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/js/belt_MutableMap.js b/lib/js/belt_MutableMap.js index 308ed685ef..e08b10898c 100644 --- a/lib/js/belt_MutableMap.js +++ b/lib/js/belt_MutableMap.js @@ -68,7 +68,7 @@ function removeArrayMutateAux(_t, xs, _i, len, cmp) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/js/belt_MutableMapInt.js b/lib/js/belt_MutableMapInt.js index ad899a11a9..273d4d634c 100644 --- a/lib/js/belt_MutableMapInt.js +++ b/lib/js/belt_MutableMapInt.js @@ -257,7 +257,7 @@ function removeArrayMutateAux(_t, xs, _i, len) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/js/belt_MutableMapString.js b/lib/js/belt_MutableMapString.js index b2b9d28a8e..ac8297c272 100644 --- a/lib/js/belt_MutableMapString.js +++ b/lib/js/belt_MutableMapString.js @@ -257,7 +257,7 @@ function removeArrayMutateAux(_t, xs, _i, len) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/js/belt_MutableQueue.js b/lib/js/belt_MutableQueue.js index dd1485ab50..4503e343bc 100644 --- a/lib/js/belt_MutableQueue.js +++ b/lib/js/belt_MutableQueue.js @@ -136,7 +136,7 @@ function copy(q) { } _cell = cell.next; _prev = res; - continue ; + continue; } qRes.last = prev; return qRes; @@ -167,7 +167,7 @@ function mapU(q, f) { } _cell = cell.next; _prev = res; - continue ; + continue; } qRes.last = prev; return qRes; @@ -195,7 +195,7 @@ function forEachU(q, f) { } f(cell.content); _cell = cell.next; - continue ; + continue; }; } @@ -215,7 +215,7 @@ function reduceU(q, accu, f) { let accu$2 = f(accu$1, cell.content); _cell = cell.next; _accu = accu$2; - continue ; + continue; }; } @@ -251,7 +251,7 @@ function fillAux(_i, arr, _cell) { arr[i] = cell.content; _cell = cell.next; _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/belt_MutableSet.js b/lib/js/belt_MutableSet.js index c65e479352..a1c57a4c22 100644 --- a/lib/js/belt_MutableSet.js +++ b/lib/js/belt_MutableSet.js @@ -66,7 +66,7 @@ function removeMany0(_t, xs, _i, len, cmp) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/js/belt_MutableSetInt.js b/lib/js/belt_MutableSetInt.js index 4bcdb0cf6d..bca51950bb 100644 --- a/lib/js/belt_MutableSetInt.js +++ b/lib/js/belt_MutableSetInt.js @@ -66,7 +66,7 @@ function removeMany0(_t, xs, _i, len) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/js/belt_MutableSetString.js b/lib/js/belt_MutableSetString.js index 41ec76ee9e..90bc7b9b06 100644 --- a/lib/js/belt_MutableSetString.js +++ b/lib/js/belt_MutableSetString.js @@ -66,7 +66,7 @@ function removeMany0(_t, xs, _i, len) { } _i = i + 1 | 0; _t = u; - continue ; + continue; }; } diff --git a/lib/js/belt_MutableStack.js b/lib/js/belt_MutableStack.js index e8e38fd830..c7e373880e 100644 --- a/lib/js/belt_MutableStack.js +++ b/lib/js/belt_MutableStack.js @@ -78,7 +78,7 @@ function size(s) { } _acc = acc + 1 | 0; _x = x$2; - continue ; + continue; }; } else { return 0; @@ -94,7 +94,7 @@ function forEachU(s, f) { } f(s$1.head); _s = s$1.tail; - continue ; + continue; }; } @@ -110,7 +110,7 @@ function dynamicPopIterU(s, f) { } s.root = match.tail; f(match.head); - continue ; + continue; }; } diff --git a/lib/js/belt_Range.js b/lib/js/belt_Range.js index 50e70732ce..d269d3cc4a 100644 --- a/lib/js/belt_Range.js +++ b/lib/js/belt_Range.js @@ -22,7 +22,7 @@ function everyU(_s, f, p) { return false; } _s = s + 1 | 0; - continue ; + continue; }; } @@ -42,7 +42,7 @@ function everyByU(s, f, step, p) { return false; } _s = s$1 + step | 0; - continue ; + continue; }; } else { return true; @@ -63,7 +63,7 @@ function someU(_s, f, p) { return true; } _s = s + 1 | 0; - continue ; + continue; }; } @@ -83,7 +83,7 @@ function someByU(s, f, step, p) { return true; } _s = s$1 + step | 0; - continue ; + continue; }; } else { return false; diff --git a/lib/js/belt_SortArray.js b/lib/js/belt_SortArray.js index 78e450606e..c925c261ba 100644 --- a/lib/js/belt_SortArray.js +++ b/lib/js/belt_SortArray.js @@ -16,7 +16,7 @@ function sortedLengthAuxMore(xs, _prec, _acc, len, lt) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } @@ -42,7 +42,7 @@ function strictlySortedLengthU(xs, lt) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } else if (lt(x1, x0)) { return -sortedLengthAuxMore(xs, x1, 2, len, lt) | 0; @@ -71,7 +71,7 @@ function isSortedU(a, cmp) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } } @@ -103,7 +103,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d + 1 | 0; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } dst[d] = s2; let i2$1 = i2 + 1 | 0; @@ -113,7 +113,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d + 1 | 0; _s2 = src2[i2$1]; _i2 = i2$1; - continue ; + continue; }; } @@ -140,7 +140,7 @@ function unionU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } Belt_Array.blitUnsafe(src2, i2, dst, d$1, src2r - i2 | 0); return (d$1 + src2r | 0) - i2 | 0; @@ -164,7 +164,7 @@ function unionU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } dst[d] = s2; let i2$2 = i2 + 1 | 0; @@ -173,7 +173,7 @@ function unionU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d$3; _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d$3, src1r - i1 | 0); return (d$3 + src1r | 0) - i1 | 0; @@ -206,7 +206,7 @@ function intersectU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, } _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (c === 0) { dst[d] = s1; @@ -221,7 +221,7 @@ function intersectU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 >= src2r) { @@ -229,7 +229,7 @@ function intersectU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, } _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; }; } @@ -262,7 +262,7 @@ function diffU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (c === 0) { let i1$2 = i1 + 1 | 0; @@ -279,13 +279,13 @@ function diffU(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs, cmp) _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 < src2r) { _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d, src1r - i1 | 0); return (d + src1r | 0) - i1 | 0; @@ -381,7 +381,7 @@ function binarySearchByU(sorted, key, cmp) { } } _hi = mid; - continue ; + continue; } if (lo$1 === mid) { if (cmp(sorted[hi$1], key) === 0) { @@ -391,7 +391,7 @@ function binarySearchByU(sorted, key, cmp) { } } _lo = mid; - continue ; + continue; }; } } diff --git a/lib/js/belt_SortArrayInt.js b/lib/js/belt_SortArrayInt.js index 986f19f413..00a3c25a8e 100644 --- a/lib/js/belt_SortArrayInt.js +++ b/lib/js/belt_SortArrayInt.js @@ -15,7 +15,7 @@ function sortedLengthAuxMore(xs, _prec, _acc, len) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } @@ -41,7 +41,7 @@ function strictlySortedLength(xs) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } else if (x0 > x1) { return -sortedLengthAuxMore(xs, x1, 2, len) | 0; @@ -66,7 +66,7 @@ function isSorted(a) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } } @@ -94,7 +94,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d + 1 | 0; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } dst[d] = s2; let i2$1 = i2 + 1 | 0; @@ -104,7 +104,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d + 1 | 0; _s2 = src2[i2$1]; _i2 = i2$1; - continue ; + continue; }; } @@ -130,7 +130,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } Belt_Array.blitUnsafe(src2, i2, dst, d$1, src2r - i2 | 0); return (d$1 + src2r | 0) - i2 | 0; @@ -154,7 +154,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } dst[d] = s2; let i2$2 = i2 + 1 | 0; @@ -163,7 +163,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$3; _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d$3, src1r - i1 | 0); return (d$3 + src1r | 0) - i1 | 0; @@ -191,7 +191,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { } _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (s1 === s2) { dst[d] = s1; @@ -206,7 +206,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 >= src2r) { @@ -214,7 +214,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { } _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; }; } @@ -242,7 +242,7 @@ function diff(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (s1 === s2) { let i1$2 = i1 + 1 | 0; @@ -259,13 +259,13 @@ function diff(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 < src2r) { _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d, src1r - i1 | 0); return (d + src1r | 0) - i1 | 0; @@ -346,7 +346,7 @@ function binarySearch(sorted, key) { } } _hi = mid; - continue ; + continue; } if (lo$1 === mid) { if (sorted[hi$1] === key) { @@ -356,7 +356,7 @@ function binarySearch(sorted, key) { } } _lo = mid; - continue ; + continue; }; } } diff --git a/lib/js/belt_SortArrayString.js b/lib/js/belt_SortArrayString.js index 986f19f413..00a3c25a8e 100644 --- a/lib/js/belt_SortArrayString.js +++ b/lib/js/belt_SortArrayString.js @@ -15,7 +15,7 @@ function sortedLengthAuxMore(xs, _prec, _acc, len) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } @@ -41,7 +41,7 @@ function strictlySortedLength(xs) { } _acc = acc + 1 | 0; _prec = v; - continue ; + continue; }; } else if (x0 > x1) { return -sortedLengthAuxMore(xs, x1, 2, len) | 0; @@ -66,7 +66,7 @@ function isSorted(a) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } } @@ -94,7 +94,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d + 1 | 0; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } dst[d] = s2; let i2$1 = i2 + 1 | 0; @@ -104,7 +104,7 @@ function merge(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d + 1 | 0; _s2 = src2[i2$1]; _i2 = i2$1; - continue ; + continue; }; } @@ -130,7 +130,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } Belt_Array.blitUnsafe(src2, i2, dst, d$1, src2r - i2 | 0); return (d$1 + src2r | 0) - i2 | 0; @@ -154,7 +154,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } dst[d] = s2; let i2$2 = i2 + 1 | 0; @@ -163,7 +163,7 @@ function union(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$3; _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d$3, src1r - i1 | 0); return (d$3 + src1r | 0) - i1 | 0; @@ -191,7 +191,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { } _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (s1 === s2) { dst[d] = s1; @@ -206,7 +206,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 >= src2r) { @@ -214,7 +214,7 @@ function intersect(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { } _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; }; } @@ -242,7 +242,7 @@ function diff(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _d = d$1; _s1 = src[i1$1]; _i1 = i1$1; - continue ; + continue; } if (s1 === s2) { let i1$2 = i1 + 1 | 0; @@ -259,13 +259,13 @@ function diff(src, src1ofs, src1len, src2, src2ofs, src2len, dst, dstofs) { _i2 = i2$1; _s1 = src[i1$2]; _i1 = i1$2; - continue ; + continue; } let i2$2 = i2 + 1 | 0; if (i2$2 < src2r) { _s2 = src2[i2$2]; _i2 = i2$2; - continue ; + continue; } Belt_Array.blitUnsafe(src, i1, dst, d, src1r - i1 | 0); return (d + src1r | 0) - i1 | 0; @@ -346,7 +346,7 @@ function binarySearch(sorted, key) { } } _hi = mid; - continue ; + continue; } if (lo$1 === mid) { if (sorted[hi$1] === key) { @@ -356,7 +356,7 @@ function binarySearch(sorted, key) { } } _lo = mid; - continue ; + continue; }; } } diff --git a/lib/js/belt_internalAVLset.js b/lib/js/belt_internalAVLset.js index 5cf3af4493..a68efe2605 100644 --- a/lib/js/belt_internalAVLset.js +++ b/lib/js/belt_internalAVLset.js @@ -90,7 +90,7 @@ function min0Aux(_n) { return n.v; } _n = n$1; - continue ; + continue; }; } @@ -116,7 +116,7 @@ function max0Aux(_n) { return n.v; } _n = n$1; - continue ; + continue; }; } @@ -160,7 +160,7 @@ function stackAllLeft(_v, _s) { tl: s }; _v = v.l; - continue ; + continue; }; } @@ -173,7 +173,7 @@ function forEachU(_n, f) { forEachU(n.l, f); f(n.v); _n = n.r; - continue ; + continue; }; } @@ -190,7 +190,7 @@ function reduceU(_s, _accu, f) { } _accu = f(reduceU(s.l, accu, f), s.v); _s = s.r; - continue ; + continue; }; } @@ -211,7 +211,7 @@ function everyU(_n, p) { return false; } _n = n.r; - continue ; + continue; }; } @@ -232,7 +232,7 @@ function someU(_n, p) { return true; } _n = n.r; - continue ; + continue; }; } @@ -348,7 +348,7 @@ function toListAux(_n, _accu) { tl: toListAux(n.r, accu) }; _n = n.l; - continue ; + continue; }; } @@ -382,7 +382,7 @@ function checkInvariantInternal(_v) { } checkInvariantInternal(l); _v = r; - continue ; + continue; }; } @@ -401,7 +401,7 @@ function fillArray(_n, _i, arr) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -427,7 +427,7 @@ function fillArrayWithPartition(_n, cursor, arr, p) { return; } _n = r; - continue ; + continue; }; } @@ -445,7 +445,7 @@ function fillArrayWithFilter(_n, _i, arr, p) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -608,7 +608,7 @@ function has(_t, x, cmp) { return true; } _t = c < 0 ? t.l : t.r; - continue ; + continue; }; } @@ -635,7 +635,7 @@ function cmp(s1, s2, cmp$1) { } _e2 = stackAllLeft(h2.r, e2.tl); _e1 = stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } else if (len1 < len2) { return -1; @@ -671,20 +671,20 @@ function subset(_s1, _s2, cmp) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset(create(l1, v1, undefined), l2, cmp)) { return false; } _s1 = r1; - continue ; + continue; } if (!subset(create(undefined, v1, r1), r2, cmp)) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -700,7 +700,7 @@ function get(_n, x, cmp) { return Caml_option.some(v); } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -716,7 +716,7 @@ function getUndefined(_n, x, cmp) { return v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -730,7 +730,7 @@ function getExn(_n, x, cmp) { return v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", diff --git a/lib/js/belt_internalAVLtree.js b/lib/js/belt_internalAVLtree.js index 640b528ffa..2d7e6c11c2 100644 --- a/lib/js/belt_internalAVLtree.js +++ b/lib/js/belt_internalAVLtree.js @@ -112,7 +112,7 @@ function minKey0Aux(_n) { return n.k; } _n = n$1; - continue ; + continue; }; } @@ -138,7 +138,7 @@ function maxKey0Aux(_n) { return n.k; } _n = n$1; - continue ; + continue; }; } @@ -167,7 +167,7 @@ function minKV0Aux(_n) { ]; } _n = n$1; - continue ; + continue; }; } @@ -196,7 +196,7 @@ function maxKV0Aux(_n) { ]; } _n = n$1; - continue ; + continue; }; } @@ -241,7 +241,7 @@ function stackAllLeft(_v, _s) { tl: s }; _v = v.l; - continue ; + continue; }; } @@ -282,7 +282,7 @@ function forEachU(_n, f) { forEachU(n.l, f); f(n.k, n.v); _n = n.r; - continue ; + continue; }; } @@ -344,7 +344,7 @@ function reduceU(_m, _accu, f) { let r = m.r; _accu = f(reduceU(l, accu, f), v, d); _m = r; - continue ; + continue; }; } @@ -365,7 +365,7 @@ function everyU(_n, p) { return false; } _n = n.r; - continue ; + continue; }; } @@ -386,7 +386,7 @@ function someU(_n, p) { return true; } _n = n.r; - continue ; + continue; }; } @@ -569,7 +569,7 @@ function toListAux(_n, _accu) { tl: toListAux(r, accu) }; _n = l; - continue ; + continue; }; } @@ -599,7 +599,7 @@ function checkInvariantInternal(_v) { } checkInvariantInternal(l); _v = r; - continue ; + continue; }; } @@ -618,7 +618,7 @@ function fillArrayKey(_n, _i, arr) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -636,7 +636,7 @@ function fillArrayValue(_n, _i, arr) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -658,7 +658,7 @@ function fillArray(_n, _i, arr) { } _i = rnext; _n = r; - continue ; + continue; }; } @@ -807,7 +807,7 @@ function cmpU(s1, s2, kcmp, vcmp) { } _e2 = stackAllLeft(h2.r, e2.tl); _e1 = stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } else if (len1 < len2) { return -1; @@ -842,7 +842,7 @@ function eqU(s1, s2, kcmp, veq) { } _e2 = stackAllLeft(h2.r, e2.tl); _e1 = stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } else { return false; @@ -865,7 +865,7 @@ function get(_n, x, cmp) { return Caml_option.some(n.v); } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -881,7 +881,7 @@ function getUndefined(_n, x, cmp) { return n.v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -895,7 +895,7 @@ function getExn(_n, x, cmp) { return n.v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -916,7 +916,7 @@ function getWithDefault(_n, x, def, cmp) { return n.v; } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } @@ -932,7 +932,7 @@ function has(_n, x, cmp) { return true; } _n = c < 0 ? n.l : n.r; - continue ; + continue; }; } diff --git a/lib/js/belt_internalBuckets.js b/lib/js/belt_internalBuckets.js index 3da2fbc5e2..eb5269f858 100644 --- a/lib/js/belt_internalBuckets.js +++ b/lib/js/belt_internalBuckets.js @@ -32,7 +32,7 @@ function copyAuxCont(_c, _prec) { prec.next = ncopy; _prec = ncopy; _c = c.next; - continue ; + continue; }; } @@ -63,7 +63,7 @@ function bucketLength(_accu, _buckets) { } _buckets = buckets.next; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -75,7 +75,7 @@ function do_bucket_iter(f, _buckets) { } f(buckets.key, buckets.value); _buckets = buckets.next; - continue ; + continue; }; } @@ -99,7 +99,7 @@ function do_bucket_fold(f, _b, _accu) { } _accu = f(accu, b.key, b.value); _b = b.next; - continue ; + continue; }; } @@ -167,7 +167,7 @@ function filterMapInplaceBucket(f, h, i, _prec, _cell) { } _cell = n; _prec = cell; - continue ; + continue; } h.size = h.size - 1 | 0; if (n === undefined) { @@ -179,7 +179,7 @@ function filterMapInplaceBucket(f, h, i, _prec, _cell) { return; } _cell = n; - continue ; + continue; }; } @@ -212,7 +212,7 @@ function fillArray(_i, arr, _cell) { } _cell = v; _i = i + 1 | 0; - continue ; + continue; }; } @@ -227,7 +227,7 @@ function fillArrayMap(_i, arr, _cell, f) { } _cell = v; _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/belt_internalBucketsType.js b/lib/js/belt_internalBucketsType.js index 6b05dc2167..2a47c3ac5e 100644 --- a/lib/js/belt_internalBucketsType.js +++ b/lib/js/belt_internalBucketsType.js @@ -11,7 +11,7 @@ function power_2_above(_x, n) { return x; } _x = (x << 1); - continue ; + continue; }; } diff --git a/lib/js/belt_internalMapInt.js b/lib/js/belt_internalMapInt.js index 4011eb81d2..023bb494f0 100644 --- a/lib/js/belt_internalMapInt.js +++ b/lib/js/belt_internalMapInt.js @@ -33,7 +33,7 @@ function get(_n, x) { return Caml_option.some(n.v); } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -48,7 +48,7 @@ function getUndefined(_n, x) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -61,7 +61,7 @@ function getExn(_n, x) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -81,7 +81,7 @@ function getWithDefault(_n, x, def) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -96,7 +96,7 @@ function has(_n, x) { return true; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -234,7 +234,7 @@ function compareAux(_e1, _e2, vcmp) { } _e2 = Belt_internalAVLtree.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLtree.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } @@ -271,7 +271,7 @@ function eqAux(_e1, _e2, eq) { } _e2 = Belt_internalAVLtree.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLtree.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } diff --git a/lib/js/belt_internalMapString.js b/lib/js/belt_internalMapString.js index 7ca674b0c4..bd5107501a 100644 --- a/lib/js/belt_internalMapString.js +++ b/lib/js/belt_internalMapString.js @@ -33,7 +33,7 @@ function get(_n, x) { return Caml_option.some(n.v); } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -48,7 +48,7 @@ function getUndefined(_n, x) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -61,7 +61,7 @@ function getExn(_n, x) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -81,7 +81,7 @@ function getWithDefault(_n, x, def) { return n.v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -96,7 +96,7 @@ function has(_n, x) { return true; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -234,7 +234,7 @@ function compareAux(_e1, _e2, vcmp) { } _e2 = Belt_internalAVLtree.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLtree.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } @@ -271,7 +271,7 @@ function eqAux(_e1, _e2, eq) { } _e2 = Belt_internalAVLtree.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLtree.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } diff --git a/lib/js/belt_internalSetBuckets.js b/lib/js/belt_internalSetBuckets.js index 31b0c6ddb1..8e2bf8ff4f 100644 --- a/lib/js/belt_internalSetBuckets.js +++ b/lib/js/belt_internalSetBuckets.js @@ -17,7 +17,7 @@ function copyAuxCont(_c, _prec) { prec.next = ncopy; _prec = ncopy; _c = c.next; - continue ; + continue; }; } @@ -60,7 +60,7 @@ function bucketLength(_accu, _buckets) { } _buckets = buckets.next; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -72,7 +72,7 @@ function doBucketIter(f, _buckets) { } f(buckets.key); _buckets = buckets.next; - continue ; + continue; }; } @@ -98,7 +98,7 @@ function fillArray(_i, arr, _cell) { } _cell = v; _i = i + 1 | 0; - continue ; + continue; }; } @@ -125,7 +125,7 @@ function doBucketFold(f, _b, _accu) { } _accu = f(accu, b.key); _b = b.next; - continue ; + continue; }; } diff --git a/lib/js/belt_internalSetInt.js b/lib/js/belt_internalSetInt.js index db7481cf8a..ffe0a7b0f6 100644 --- a/lib/js/belt_internalSetInt.js +++ b/lib/js/belt_internalSetInt.js @@ -14,7 +14,7 @@ function has(_t, x) { return true; } _t = x < v ? t.l : t.r; - continue ; + continue; }; } @@ -41,7 +41,7 @@ function compareAux(_e1, _e2) { } _e2 = Belt_internalAVLset.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLset.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } @@ -83,20 +83,20 @@ function subset(_s1, _s2) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (v1 < v2) { if (!subset(Belt_internalAVLset.create(l1, v1, undefined), l2)) { return false; } _s1 = r1; - continue ; + continue; } if (!subset(Belt_internalAVLset.create(undefined, v1, r1), r2)) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -111,7 +111,7 @@ function get(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -126,7 +126,7 @@ function getUndefined(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -139,7 +139,7 @@ function getExn(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", diff --git a/lib/js/belt_internalSetString.js b/lib/js/belt_internalSetString.js index 18894e7491..abd340e001 100644 --- a/lib/js/belt_internalSetString.js +++ b/lib/js/belt_internalSetString.js @@ -14,7 +14,7 @@ function has(_t, x) { return true; } _t = x < v ? t.l : t.r; - continue ; + continue; }; } @@ -41,7 +41,7 @@ function compareAux(_e1, _e2) { } _e2 = Belt_internalAVLset.stackAllLeft(h2.r, e2.tl); _e1 = Belt_internalAVLset.stackAllLeft(h1.r, e1.tl); - continue ; + continue; }; } @@ -83,20 +83,20 @@ function subset(_s1, _s2) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (v1 < v2) { if (!subset(Belt_internalAVLset.create(l1, v1, undefined), l2)) { return false; } _s1 = r1; - continue ; + continue; } if (!subset(Belt_internalAVLset.create(undefined, v1, r1), r2)) { return false; } _s1 = l1; - continue ; + continue; }; } @@ -111,7 +111,7 @@ function get(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -126,7 +126,7 @@ function getUndefined(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; }; } @@ -139,7 +139,7 @@ function getExn(_n, x) { return v; } _n = x < v ? n.l : n.r; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", diff --git a/lib/js/buffer.js b/lib/js/buffer.js index 7b493282b7..b0d8373923 100644 --- a/lib/js/buffer.js +++ b/lib/js/buffer.js @@ -323,7 +323,7 @@ function advance_to_closing(opening, closing, k, s, start) { if (Caml_string.get(s, i) === opening) { _i = i + 1 | 0; _k = k$1 + 1 | 0; - continue ; + continue; } if (Caml_string.get(s, i) === closing) { if (k$1 === 0) { @@ -331,10 +331,10 @@ function advance_to_closing(opening, closing, k, s, start) { } _i = i + 1 | 0; _k = k$1 - 1 | 0; - continue ; + continue; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -366,7 +366,7 @@ function advance_to_non_alpha(s, start) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -414,30 +414,30 @@ function add_substitute(b, f, s) { add_char(b, current); _i = i + 1 | 0; _previous = /* ' ' */32; - continue ; + continue; } if (current !== 92) { add_char(b, current); _i = i + 1 | 0; _previous = current; - continue ; + continue; } _i = i + 1 | 0; _previous = current; - continue ; + continue; } if (previous === /* '\\' */92) { add_char(b, current); _i = i + 1 | 0; _previous = /* ' ' */32; - continue ; + continue; } let j = i + 1 | 0; let match = find_ident(s, j, lim); add_string(b, Curry._1(f, match[0])); _i = match[1]; _previous = /* ' ' */32; - continue ; + continue; }; } diff --git a/lib/js/bytes.js b/lib/js/bytes.js index 4f08cb2dd3..871b713ba1 100644 --- a/lib/js/bytes.js +++ b/lib/js/bytes.js @@ -261,7 +261,7 @@ function sum_lengths(_acc, seplen, _param) { } _param = tl; _acc = ensure_ge((hd.length + seplen | 0) + acc | 0, acc); - continue ; + continue; }; } @@ -286,7 +286,7 @@ function concat(sep, param) { unsafe_blit(sep, 0, dst, pos + hd.length | 0, seplen); _param = tl; _pos = (pos + hd.length | 0) + seplen | 0; - continue ; + continue; } unsafe_blit(hd, 0, dst, pos, hd.length); return dst; @@ -494,7 +494,7 @@ function index_rec(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -512,7 +512,7 @@ function index_rec_opt(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -557,7 +557,7 @@ function rindex_rec(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -586,7 +586,7 @@ function rindex_rec_opt(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/bytesLabels.js b/lib/js/bytesLabels.js index 4f08cb2dd3..871b713ba1 100644 --- a/lib/js/bytesLabels.js +++ b/lib/js/bytesLabels.js @@ -261,7 +261,7 @@ function sum_lengths(_acc, seplen, _param) { } _param = tl; _acc = ensure_ge((hd.length + seplen | 0) + acc | 0, acc); - continue ; + continue; }; } @@ -286,7 +286,7 @@ function concat(sep, param) { unsafe_blit(sep, 0, dst, pos + hd.length | 0, seplen); _param = tl; _pos = (pos + hd.length | 0) + seplen | 0; - continue ; + continue; } unsafe_blit(hd, 0, dst, pos, hd.length); return dst; @@ -494,7 +494,7 @@ function index_rec(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -512,7 +512,7 @@ function index_rec_opt(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -557,7 +557,7 @@ function rindex_rec(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -586,7 +586,7 @@ function rindex_rec_opt(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/caml_array.js b/lib/js/caml_array.js index 8c5ae0f1de..3e98a0f9f8 100644 --- a/lib/js/caml_array.js +++ b/lib/js/caml_array.js @@ -22,7 +22,7 @@ function len(_acc, _l) { } _l = l.tl; _acc = l.hd.length + acc | 0; - continue ; + continue; }; } @@ -44,7 +44,7 @@ function fill(arr, _i, _l) { }; _l = l.tl; _i = k; - continue ; + continue; }; } diff --git a/lib/js/caml_bytes.js b/lib/js/caml_bytes.js index f558a63241..7bec1b3b79 100644 --- a/lib/js/caml_bytes.js +++ b/lib/js/caml_bytes.js @@ -53,7 +53,7 @@ function bytes_compare_aux(s1, s2, _off, len, def) { return -1; } _off = off + 1 | 0; - continue ; + continue; }; } @@ -85,7 +85,7 @@ function bytes_equal(s1, s2) { return false; } _off = off + 1 | 0; - continue ; + continue; }; } else { return false; diff --git a/lib/js/caml_format.js b/lib/js/caml_format.js index 2cabc1f1c0..0e257efc08 100644 --- a/lib/js/caml_format.js +++ b/lib/js/caml_format.js @@ -150,7 +150,7 @@ function int_of_string(s) { let a = s.codePointAt(k); if (a === /* '_' */95) { _k = k + 1 | 0; - continue ; + continue; } let v = parse_digit(a); if (v < 0 || v >= base) { @@ -170,7 +170,7 @@ function int_of_string(s) { } _k = k + 1 | 0; _acc = acc$1; - continue ; + continue; }; }; let res = match[1] * aux(d, i + 1 | 0); @@ -236,7 +236,7 @@ function int64_of_string(s) { let a = s.codePointAt(k); if (a === /* '_' */95) { _k = k + 1 | 0; - continue ; + continue; } let v = Caml_int64.of_int32(parse_digit(a)); if (Caml.i64_lt(v, Caml_int64.zero) || Caml.i64_ge(v, base) || Caml.i64_gt(acc, threshold)) { @@ -249,7 +249,7 @@ function int64_of_string(s) { let acc$1 = Caml_int64.add(Caml_int64.mul(base, acc), v); _k = k + 1 | 0; _acc = acc$1; - continue ; + continue; }; }; let res = Caml_int64.mul(sign, aux(d, i + 1 | 0)); @@ -327,7 +327,7 @@ function parse_format(fmt) { f.base = "Hex"; f.uppercase = true; _i = i + 1 | 0; - continue ; + continue; case 101 : case 102 : case 103 : @@ -340,11 +340,11 @@ function parse_format(fmt) { case 111 : f.base = "Oct"; _i = i + 1 | 0; - continue ; + continue; case 117 : f.base = "Dec"; _i = i + 1 | 0; - continue ; + continue; case 89 : case 90 : case 91 : @@ -374,7 +374,7 @@ function parse_format(fmt) { case 120 : f.base = "Hex"; _i = i + 1 | 0; - continue ; + continue; } } @@ -385,14 +385,14 @@ function parse_format(fmt) { f.uppercase = true; f.conv = String.fromCharCode(lowercase(c)); _i = i + 1 | 0; - continue ; + continue; } } else { switch (c) { case 35 : f.alternate = true; _i = i + 1 | 0; - continue ; + continue; case 32 : case 43 : exit = 2; @@ -400,7 +400,7 @@ function parse_format(fmt) { case 45 : f.justify = "-"; _i = i + 1 | 0; - continue ; + continue; case 46 : f.prec = 0; let j = i + 1 | 0; @@ -412,11 +412,11 @@ function parse_format(fmt) { j = j + 1 | 0; }; _i = j; - continue ; + continue; case 48 : f.filter = "0"; _i = i + 1 | 0; - continue ; + continue; case 49 : case 50 : case 51 : @@ -435,11 +435,11 @@ function parse_format(fmt) { switch (exit) { case 1 : _i = i + 1 | 0; - continue ; + continue; case 2 : f.signstyle = String.fromCharCode(c); _i = i + 1 | 0; - continue ; + continue; case 3 : f.width = 0; let j$1 = i; @@ -451,17 +451,17 @@ function parse_format(fmt) { j$1 = j$1 + 1 | 0; }; _i = j$1; - continue ; + continue; case 4 : f.signedconv = true; f.base = "Dec"; _i = i + 1 | 0; - continue ; + continue; case 5 : f.signedconv = true; f.conv = String.fromCharCode(c); _i = i + 1 | 0; - continue ; + continue; } }; diff --git a/lib/js/caml_int64.js b/lib/js/caml_int64.js index c129f38a96..12802c24ac 100644 --- a/lib/js/caml_int64.js +++ b/lib/js/caml_int64.js @@ -241,7 +241,7 @@ function mul(_this, _other) { } _other = neg(other); _this = neg($$this); - continue ; + continue; } if (other_hi < 0) { return neg(mul($$this, neg(other))); @@ -447,7 +447,7 @@ function div(_self, _other) { } _other = neg(other); _self = neg(self); - continue ; + continue; } if (other_hi < 0) { return neg(div(self, neg(other))); diff --git a/lib/js/caml_obj.js b/lib/js/caml_obj.js index ca4152bdd3..83c4bdf22e 100644 --- a/lib/js/caml_obj.js +++ b/lib/js/caml_obj.js @@ -165,7 +165,7 @@ function compare(a, b) { return res; } _i = i + 1 | 0; - continue ; + continue; }; } else if ((a instanceof Date && b instanceof Date)) { return (a - b); @@ -184,7 +184,7 @@ function compare(a, b) { return res$1; } _i$1 = i$1 + 1 | 0; - continue ; + continue; }; } else { let _i$2 = 0; @@ -198,7 +198,7 @@ function compare(a, b) { return res$2; } _i$2 = i$2 + 1 | 0; - continue ; + continue; }; } } @@ -306,7 +306,7 @@ function equal(a, b) { return false; } _i = i + 1 | 0; - continue ; + continue; }; } else if ((a instanceof Date && b instanceof Date)) { return !(a > b || a < b); diff --git a/lib/js/curry.js b/lib/js/curry.js index cc5354bb5d..df8a8980c4 100644 --- a/lib/js/curry.js +++ b/lib/js/curry.js @@ -20,7 +20,7 @@ function app(_f, _args) { } _args = Caml_array.sub(args, arity, -d | 0); _f = f.apply(null, Caml_array.sub(args, 0, arity)); - continue ; + continue; }; } diff --git a/lib/js/filename.js b/lib/js/filename.js index 22e6930898..4418e933d9 100644 --- a/lib/js/filename.js +++ b/lib/js/filename.js @@ -31,11 +31,11 @@ function generic_basename(is_dir_sep, current_dir_name, name) { return $$String.sub(name, n$1 + 1 | 0, (p - n$1 | 0) - 1 | 0); } _n$1 = n$1 - 1 | 0; - continue ; + continue; }; } _n = n - 1 | 0; - continue ; + continue; }; } } @@ -68,15 +68,15 @@ function generic_dirname(is_dir_sep, current_dir_name, name) { return $$String.sub(name, 0, n$2 + 1 | 0); } _n$2 = n$2 - 1 | 0; - continue ; + continue; }; } _n$1 = n$1 - 1 | 0; - continue ; + continue; }; } _n = n - 1 | 0; - continue ; + continue; }; } } @@ -229,7 +229,7 @@ function quote$1(s) { } $$Buffer.add_char(b, c); _i = i + 1 | 0; - continue ; + continue; }; }; let loop_bs = function (_n, _i) { @@ -248,7 +248,7 @@ function quote$1(s) { } _i = i + 1 | 0; _n = n + 1 | 0; - continue ; + continue; } add_bs((n << 1) + 1 | 0); $$Buffer.add_char(b, /* '"' */34); @@ -408,11 +408,11 @@ function extension_len(name) { return name.length - i | 0; } _i$1 = i$1 - 1 | 0; - continue ; + continue; }; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/genlex.js b/lib/js/genlex.js index 88561a47d7..c42d0df061 100644 --- a/lib/js/genlex.js +++ b/lib/js/genlex.js @@ -101,7 +101,7 @@ function make_lexer(keywords) { case 26 : case 32 : Stream.junk(strm__); - continue ; + continue; case 34 : Stream.junk(strm__); reset_buffer(); @@ -289,7 +289,7 @@ function make_lexer(keywords) { } Stream.junk(strm__); store(c$3); - continue ; + continue; }; case 3 : Stream.junk(strm__); @@ -370,7 +370,7 @@ function make_lexer(keywords) { } Stream.junk(strm__); store(c); - continue ; + continue; }; }; let number = function (strm__) { @@ -388,7 +388,7 @@ function make_lexer(keywords) { if (c >= 48) { Stream.junk(strm__); store(c); - continue ; + continue; } } else { @@ -401,7 +401,7 @@ function make_lexer(keywords) { if (!(c$1 > 57 || c$1 < 48)) { Stream.junk(strm__); store(c$1); - continue ; + continue; } } else if (c$1 > 100 || c$1 < 70) { @@ -451,7 +451,7 @@ function make_lexer(keywords) { } Stream.junk(strm__); store(c); - continue ; + continue; }; }; let string = function (strm__) { @@ -462,7 +462,7 @@ function make_lexer(keywords) { if (c !== 92) { Stream.junk(strm__); store(c); - continue ; + continue; } Stream.junk(strm__); let c$1; @@ -481,7 +481,7 @@ function make_lexer(keywords) { throw exn; } store(c$1); - continue ; + continue; } Stream.junk(strm__); return get_string(); @@ -619,7 +619,7 @@ function make_lexer(keywords) { return comment(strm__); } Stream.junk(strm__); - continue ; + continue; } Stream.junk(strm__); return; @@ -631,7 +631,7 @@ function make_lexer(keywords) { }; default: Stream.junk(strm__); - continue ; + continue; } } else { throw { diff --git a/lib/js/hashtbl.js b/lib/js/hashtbl.js index c113bc9004..3f46d16e4a 100644 --- a/lib/js/hashtbl.js +++ b/lib/js/hashtbl.js @@ -53,7 +53,7 @@ function power_2_above(_x, n) { return x; } _x = (x << 1); - continue ; + continue; }; } @@ -125,7 +125,7 @@ function copy_bucketlist(param) { prec.next = r; _param = next; _prec = r; - continue ; + continue; }; }; let r = { @@ -186,7 +186,7 @@ function resize(indexfun, h) { } Caml_array.set(ndata_tail, nidx, cell); _param = next; - continue ; + continue; }; }; for(let i = 0; i < osize; ++i){ @@ -247,7 +247,7 @@ function remove(h, key) { } _param = next; _prec = param; - continue ; + continue; }; } @@ -305,7 +305,7 @@ function find(h, key) { return data; } _param = next; - continue ; + continue; }; } } @@ -352,7 +352,7 @@ function find_opt(h, key) { return Caml_option.some(data); } _param = next; - continue ; + continue; }; } } @@ -374,7 +374,7 @@ function find_all(h, key) { }; } _param = next; - continue ; + continue; }; }; return find_in_bucket(Caml_array.get(h.data, key_index(h, key))); @@ -394,7 +394,7 @@ function replace_bucket(key, data, _param) { return false; } _param = next; - continue ; + continue; }; } @@ -431,7 +431,7 @@ function mem(h, key) { return true; } _param = next; - continue ; + continue; }; } @@ -447,7 +447,7 @@ function iter(f, h) { let next = param.next; Curry._2(f, key, data); _param = next; - continue ; + continue; }; }; let old_trav = h.initial_size < 0; @@ -499,11 +499,11 @@ function filter_map_inplace_bucket(f, h, i, _prec, _param) { param.data = Caml_option.valFromOption(data$1); _param = next; _prec = param; - continue ; + continue; } h.size = h.size - 1 | 0; _param = next; - continue ; + continue; }; } @@ -541,7 +541,7 @@ function fold(f, h, init) { let next = b.next; _accu = Curry._3(f, key, data, accu); _b = next; - continue ; + continue; }; }; let old_trav = h.initial_size < 0; @@ -578,7 +578,7 @@ function bucket_length(_accu, _param) { let next = param.next; _param = next; _accu = accu + 1 | 0; - continue ; + continue; }; } @@ -641,7 +641,7 @@ function MakeSeeded(H) { } _param = next; _prec = param; - continue ; + continue; }; }; let find = function (h, key) { @@ -698,7 +698,7 @@ function MakeSeeded(H) { return data; } _param = next; - continue ; + continue; }; } }; @@ -744,7 +744,7 @@ function MakeSeeded(H) { return Caml_option.some(data); } _param = next; - continue ; + continue; }; } }; @@ -765,7 +765,7 @@ function MakeSeeded(H) { }; } _param = next; - continue ; + continue; }; }; return find_in_bucket(Caml_array.get(h.data, key_index(h, key))); @@ -784,7 +784,7 @@ function MakeSeeded(H) { return false; } _param = next; - continue ; + continue; }; }; let replace = function (h, key, data) { @@ -819,7 +819,7 @@ function MakeSeeded(H) { return true; } _param = next; - continue ; + continue; }; }; return { @@ -885,7 +885,7 @@ function Make(H) { } _param = next; _prec = param; - continue ; + continue; }; }; let find = function (h, key) { @@ -942,7 +942,7 @@ function Make(H) { return data; } _param = next; - continue ; + continue; }; } }; @@ -988,7 +988,7 @@ function Make(H) { return Caml_option.some(data); } _param = next; - continue ; + continue; }; } }; @@ -1009,7 +1009,7 @@ function Make(H) { }; } _param = next; - continue ; + continue; }; }; return find_in_bucket(Caml_array.get(h.data, key_index(h, key))); @@ -1028,7 +1028,7 @@ function Make(H) { return false; } _param = next; - continue ; + continue; }; }; let replace = function (h, key, data) { @@ -1063,7 +1063,7 @@ function Make(H) { return true; } _param = next; - continue ; + continue; }; }; let create$1 = function (sz) { diff --git a/lib/js/js_dict.js b/lib/js/js_dict.js index de36932d44..4ee3231c38 100644 --- a/lib/js/js_dict.js +++ b/lib/js/js_dict.js @@ -48,7 +48,7 @@ function fromList(entries) { let match = x.hd; dict[match[0]] = match[1]; _x = x.tl; - continue ; + continue; }; } diff --git a/lib/js/js_list.js b/lib/js/js_list.js index 61f262ea4d..ff86976b4b 100644 --- a/lib/js/js_list.js +++ b/lib/js/js_list.js @@ -14,7 +14,7 @@ function length(l) { } _x = x.tl; _len = len + 1 | 0; - continue ; + continue; }; } @@ -60,7 +60,7 @@ function nth(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; }; } @@ -76,7 +76,7 @@ function revAppend(_l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -96,7 +96,7 @@ function mapRevAux(f, _acc, _ls) { hd: f(ls.hd), tl: acc }; - continue ; + continue; }; } @@ -116,7 +116,7 @@ function iter(f, _x) { } f(x.hd); _x = x.tl; - continue ; + continue; }; } @@ -132,7 +132,7 @@ function iteri(f, l) { f(i, x.hd); _x = x.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -145,7 +145,7 @@ function foldLeft(f, _accu, _l) { } _l = l.tl; _accu = f(accu, l.hd); - continue ; + continue; }; } @@ -158,7 +158,7 @@ function tailLoop(f, _acc, _x) { } _x = x.tl; _acc = f(x.hd, acc); - continue ; + continue; }; } @@ -189,7 +189,7 @@ function flatten(lx) { } _lx = lx$1.tl; _acc = revAppend(lx$1.hd, acc); - continue ; + continue; }; } @@ -208,10 +208,10 @@ function filterRevAux(f, _acc, _xs) { hd: y, tl: acc }; - continue ; + continue; } _xs = ys; - continue ; + continue; }; } @@ -234,10 +234,10 @@ function filterMapRevAux(f, _acc, _xs) { hd: Caml_option.valFromOption(z), tl: acc }; - continue ; + continue; } _xs = ys; - continue ; + continue; }; } @@ -256,7 +256,7 @@ function countBy(f, xs) { } _xs = xs$1.tl; _acc = f(xs$1.hd) ? acc + 1 | 0 : acc; - continue ; + continue; }; } @@ -280,7 +280,7 @@ function toVector(xs) { a[i] = x.hd; _x = x.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -303,7 +303,7 @@ function equal(cmp, _xs, _ys) { } _ys = ys.tl; _xs = xs.tl; - continue ; + continue; }; } diff --git a/lib/js/js_mapperRt.js b/lib/js/js_mapperRt.js index 1e2b8e158f..d6ddfa2721 100644 --- a/lib/js/js_mapperRt.js +++ b/lib/js/js_mapperRt.js @@ -23,7 +23,7 @@ function fromInt(len, xs, $$enum) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -42,7 +42,7 @@ function fromIntAssert(len, xs, $$enum) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/js_vector.js b/lib/js/js_vector.js index 059d447a54..bf30ae8e9d 100644 --- a/lib/js/js_vector.js +++ b/lib/js/js_vector.js @@ -53,7 +53,7 @@ function toList(a) { tl: res }; _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/list.js b/lib/js/list.js index ba69509710..1064c4f1ce 100644 --- a/lib/js/list.js +++ b/lib/js/list.js @@ -16,7 +16,7 @@ function length(l) { } _param = param.tl; _len = len + 1 | 0; - continue ; + continue; }; } @@ -68,7 +68,7 @@ function nth(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Failure", @@ -99,7 +99,7 @@ function nth_opt(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; }; } @@ -115,7 +115,7 @@ function rev_append(_l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -135,7 +135,7 @@ function init_tailrec_aux(_acc, _i, n, f) { hd: Curry._1(f, i), tl: acc }; - continue ; + continue; }; } @@ -213,7 +213,7 @@ function rev_map(f, l) { hd: Curry._1(f, param.hd), tl: accu }; - continue ; + continue; }; } @@ -225,7 +225,7 @@ function iter(f, _param) { } Curry._1(f, param.hd); _param = param.tl; - continue ; + continue; }; } @@ -241,7 +241,7 @@ function iteri(f, l) { Curry._2(f, i, param.hd); _param = param.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -254,7 +254,7 @@ function fold_left(f, _accu, _l) { } _l = l.tl; _accu = Curry._2(f, accu, l.hd); - continue ; + continue; }; } @@ -307,7 +307,7 @@ function rev_map2(f, l1, l2) { hd: Curry._2(f, l1$1.hd, l2$1.hd), tl: accu }; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -335,7 +335,7 @@ function iter2(f, _l1, _l2) { Curry._2(f, l1.hd, l2.hd); _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -364,7 +364,7 @@ function fold_left2(f, _accu, _l1, _l2) { _l2 = l2.tl; _l1 = l1.tl; _accu = Curry._3(f, accu, l1.hd, l2.hd); - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -414,7 +414,7 @@ function for_all(p, _param) { return false; } _param = param.tl; - continue ; + continue; }; } @@ -428,7 +428,7 @@ function exists(p, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -443,7 +443,7 @@ function for_all2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -473,7 +473,7 @@ function exists2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -502,7 +502,7 @@ function mem(x, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -516,7 +516,7 @@ function memq(x, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -529,7 +529,7 @@ function assoc(x, _param) { return match[1]; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -549,7 +549,7 @@ function assoc_opt(x, _param) { return Caml_option.some(match[1]); } _param = param.tl; - continue ; + continue; }; } @@ -562,7 +562,7 @@ function assq(x, _param) { return match[1]; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -582,7 +582,7 @@ function assq_opt(x, _param) { return Caml_option.some(match[1]); } _param = param.tl; - continue ; + continue; }; } @@ -596,7 +596,7 @@ function mem_assoc(x, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -610,7 +610,7 @@ function mem_assq(x, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -655,7 +655,7 @@ function find(p, _param) { return x; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -675,7 +675,7 @@ function find_opt(p, _param) { return Caml_option.some(x); } _param = param.tl; - continue ; + continue; }; } @@ -697,10 +697,10 @@ function find_all(p) { hd: x, tl: accu }; - continue ; + continue; } _param = l; - continue ; + continue; }; }; } @@ -727,14 +727,14 @@ function partition(p, l) { hd: x, tl: yes }; - continue ; + continue; } _param = l$1; _no = { hd: x, tl: no }; - continue ; + continue; }; } @@ -818,7 +818,7 @@ function chop(_k, _l) { if (l) { _l = l.tl; _k = k - 1 | 0; - continue ; + continue; } throw { RE_EXN_ID: "Assert_failure", @@ -969,14 +969,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -1115,14 +1115,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let len = length(l); @@ -1347,7 +1347,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 > 0) { _accu = { @@ -1355,14 +1355,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -1578,7 +1578,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 < 0) { _accu = { @@ -1586,14 +1586,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let len = length(l); @@ -1620,7 +1620,7 @@ function compare_lengths(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1642,7 +1642,7 @@ function compare_length_with(_l, _n) { } _n = n - 1 | 0; _l = l.tl; - continue ; + continue; }; } diff --git a/lib/js/listLabels.js b/lib/js/listLabels.js index 53cb36b11e..372eb5de53 100644 --- a/lib/js/listLabels.js +++ b/lib/js/listLabels.js @@ -16,7 +16,7 @@ function length(l) { } _param = param.tl; _len = len + 1 | 0; - continue ; + continue; }; } @@ -68,7 +68,7 @@ function nth(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Failure", @@ -99,7 +99,7 @@ function nth_opt(l, n) { } _n = n$1 - 1 | 0; _l = l$1.tl; - continue ; + continue; }; } @@ -115,7 +115,7 @@ function rev_append(_l1, _l2) { tl: l2 }; _l1 = l1.tl; - continue ; + continue; }; } @@ -135,7 +135,7 @@ function init_tailrec_aux(_acc, _i, n, f) { hd: Curry._1(f, i), tl: acc }; - continue ; + continue; }; } @@ -213,7 +213,7 @@ function rev_map(f, l) { hd: Curry._1(f, param.hd), tl: accu }; - continue ; + continue; }; } @@ -225,7 +225,7 @@ function iter(f, _param) { } Curry._1(f, param.hd); _param = param.tl; - continue ; + continue; }; } @@ -241,7 +241,7 @@ function iteri(f, l) { Curry._2(f, i, param.hd); _param = param.tl; _i = i + 1 | 0; - continue ; + continue; }; } @@ -254,7 +254,7 @@ function fold_left(f, _accu, _l) { } _l = l.tl; _accu = Curry._2(f, accu, l.hd); - continue ; + continue; }; } @@ -307,7 +307,7 @@ function rev_map2(f, l1, l2) { hd: Curry._2(f, l1$1.hd, l2$1.hd), tl: accu }; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -335,7 +335,7 @@ function iter2(f, _l1, _l2) { Curry._2(f, l1.hd, l2.hd); _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -364,7 +364,7 @@ function fold_left2(f, _accu, _l1, _l2) { _l2 = l2.tl; _l1 = l1.tl; _accu = Curry._3(f, accu, l1.hd, l2.hd); - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -414,7 +414,7 @@ function for_all(p, _param) { return false; } _param = param.tl; - continue ; + continue; }; } @@ -428,7 +428,7 @@ function exists(p, _param) { return true; } _param = param.tl; - continue ; + continue; }; } @@ -443,7 +443,7 @@ function for_all2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -473,7 +473,7 @@ function exists2(p, _l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; } throw { RE_EXN_ID: "Invalid_argument", @@ -502,7 +502,7 @@ function mem(x, _set) { return true; } _set = set.tl; - continue ; + continue; }; } @@ -516,7 +516,7 @@ function memq(x, _set) { return true; } _set = set.tl; - continue ; + continue; }; } @@ -529,7 +529,7 @@ function assoc(x, _param) { return match[1]; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -549,7 +549,7 @@ function assoc_opt(x, _param) { return Caml_option.some(match[1]); } _param = param.tl; - continue ; + continue; }; } @@ -562,7 +562,7 @@ function assq(x, _param) { return match[1]; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -582,7 +582,7 @@ function assq_opt(x, _param) { return Caml_option.some(match[1]); } _param = param.tl; - continue ; + continue; }; } @@ -596,7 +596,7 @@ function mem_assoc(x, _map) { return true; } _map = map.tl; - continue ; + continue; }; } @@ -610,7 +610,7 @@ function mem_assq(x, _map) { return true; } _map = map.tl; - continue ; + continue; }; } @@ -655,7 +655,7 @@ function find(p, _param) { return x; } _param = param.tl; - continue ; + continue; } throw { RE_EXN_ID: "Not_found", @@ -675,7 +675,7 @@ function find_opt(p, _param) { return Caml_option.some(x); } _param = param.tl; - continue ; + continue; }; } @@ -697,10 +697,10 @@ function find_all(p) { hd: x, tl: accu }; - continue ; + continue; } _param = l; - continue ; + continue; }; }; } @@ -727,14 +727,14 @@ function partition(p, l) { hd: x, tl: yes }; - continue ; + continue; } _param = l$1; _no = { hd: x, tl: no }; - continue ; + continue; }; } @@ -818,7 +818,7 @@ function chop(_k, _l) { if (l) { _l = l.tl; _k = k - 1 | 0; - continue ; + continue; } throw { RE_EXN_ID: "Assert_failure", @@ -969,14 +969,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -1115,14 +1115,14 @@ function stable_sort(cmp, l) { tl: accu }; _l1 = l1.tl; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = l2$1.tl; - continue ; + continue; }; }; let len = length(l); @@ -1347,7 +1347,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 > 0) { _accu = { @@ -1355,14 +1355,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let rev_sort = function (n, l) { @@ -1578,7 +1578,7 @@ function sort_uniq(cmp, l) { }; _l2 = t2; _l1 = t1; - continue ; + continue; } if (c$7 < 0) { _accu = { @@ -1586,14 +1586,14 @@ function sort_uniq(cmp, l) { tl: accu }; _l1 = t1; - continue ; + continue; } _accu = { hd: h2, tl: accu }; _l2 = t2; - continue ; + continue; }; }; let len = length(l); @@ -1620,7 +1620,7 @@ function compare_lengths(_l1, _l2) { } _l2 = l2.tl; _l1 = l1.tl; - continue ; + continue; }; } @@ -1642,7 +1642,7 @@ function compare_length_with(_l, _n) { } _n = n - 1 | 0; _l = l.tl; - continue ; + continue; }; } diff --git a/lib/js/map.js b/lib/js/map.js index 2c2024cc01..97ecf67e08 100644 --- a/lib/js/map.js +++ b/lib/js/map.js @@ -161,7 +161,7 @@ function Make(funarg) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -193,14 +193,14 @@ function Make(funarg) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -229,14 +229,14 @@ function Make(funarg) { _param$1 = param$1.l; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -268,14 +268,14 @@ function Make(funarg) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -304,14 +304,14 @@ function Make(funarg) { _param$1 = param$1.r; _d0 = param$1.d; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -325,7 +325,7 @@ function Make(funarg) { return Caml_option.some(param.d); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let mem = function (x, _param) { @@ -339,7 +339,7 @@ function Make(funarg) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let min_binding = function (_param) { @@ -359,7 +359,7 @@ function Make(funarg) { ]; } _param = l; - continue ; + continue; }; }; let min_binding_opt = function (_param) { @@ -376,7 +376,7 @@ function Make(funarg) { ]; } _param = l; - continue ; + continue; }; }; let max_binding = function (_param) { @@ -396,7 +396,7 @@ function Make(funarg) { ]; } _param = r; - continue ; + continue; }; }; let max_binding_opt = function (_param) { @@ -413,7 +413,7 @@ function Make(funarg) { ]; } _param = r; - continue ; + continue; }; }; let remove_min_binding = function (param) { @@ -532,7 +532,7 @@ function Make(funarg) { iter(f, param.l); Curry._2(f, param.v, param.d); _param = param.r; - continue ; + continue; }; }; let map = function (f, param) { @@ -577,7 +577,7 @@ function Make(funarg) { } _accu = Curry._3(f, m.v, m.d, fold(f, m.l, accu)); _m = m.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -593,7 +593,7 @@ function Make(funarg) { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -609,7 +609,7 @@ function Make(funarg) { return true; } _param = param.r; - continue ; + continue; }; }; let add_min_binding = function (k, x, param) { @@ -820,7 +820,7 @@ function Make(funarg) { _3: e }; _m = m.l; - continue ; + continue; }; }; let compare = function (cmp, m1, m2) { @@ -849,7 +849,7 @@ function Make(funarg) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let equal = function (cmp, m1, m2) { @@ -876,7 +876,7 @@ function Make(funarg) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let cardinal = function (param) { @@ -901,7 +901,7 @@ function Make(funarg) { ], tl: bindings_aux(accu, param.r) }; - continue ; + continue; }; }; let bindings = function (s) { diff --git a/lib/js/mapLabels.js b/lib/js/mapLabels.js index c86e441772..50d502cfd0 100644 --- a/lib/js/mapLabels.js +++ b/lib/js/mapLabels.js @@ -161,7 +161,7 @@ function Make(Ord) { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first_aux = function (_v0, _d0, f, _param) { @@ -180,10 +180,10 @@ function Make(Ord) { _param = param.l; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -200,7 +200,7 @@ function Make(Ord) { return find_first_aux(v, param.d, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_first_opt_aux = function (_v0, _d0, f, _param) { @@ -219,10 +219,10 @@ function Make(Ord) { _param = param.l; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -236,7 +236,7 @@ function Make(Ord) { return find_first_opt_aux(v, param.d, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_last_aux = function (_v0, _d0, f, _param) { @@ -255,10 +255,10 @@ function Make(Ord) { _param = param.r; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -275,7 +275,7 @@ function Make(Ord) { return find_last_aux(v, param.d, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_last_opt_aux = function (_v0, _d0, f, _param) { @@ -294,10 +294,10 @@ function Make(Ord) { _param = param.r; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -311,7 +311,7 @@ function Make(Ord) { return find_last_opt_aux(v, param.d, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -325,7 +325,7 @@ function Make(Ord) { return Caml_option.some(param.d); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let mem = function (x, _param) { @@ -339,7 +339,7 @@ function Make(Ord) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let min_binding = function (_param) { @@ -359,7 +359,7 @@ function Make(Ord) { ]; } _param = l; - continue ; + continue; }; }; let min_binding_opt = function (_param) { @@ -376,7 +376,7 @@ function Make(Ord) { ]; } _param = l; - continue ; + continue; }; }; let max_binding = function (_param) { @@ -396,7 +396,7 @@ function Make(Ord) { ]; } _param = r; - continue ; + continue; }; }; let max_binding_opt = function (_param) { @@ -413,7 +413,7 @@ function Make(Ord) { ]; } _param = r; - continue ; + continue; }; }; let remove_min_binding = function (param) { @@ -532,7 +532,7 @@ function Make(Ord) { iter(f, param.l); Curry._2(f, param.v, param.d); _param = param.r; - continue ; + continue; }; }; let map = function (f, param) { @@ -577,7 +577,7 @@ function Make(Ord) { } _accu = Curry._3(f, m.v, m.d, fold(f, m.l, accu)); _m = m.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -593,7 +593,7 @@ function Make(Ord) { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -609,7 +609,7 @@ function Make(Ord) { return true; } _param = param.r; - continue ; + continue; }; }; let add_min_binding = function (k, x, param) { @@ -820,7 +820,7 @@ function Make(Ord) { _3: e }; _m = m.l; - continue ; + continue; }; }; let compare = function (cmp, m1, m2) { @@ -849,7 +849,7 @@ function Make(Ord) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let equal = function (cmp, m1, m2) { @@ -876,7 +876,7 @@ function Make(Ord) { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let cardinal = function (param) { @@ -901,7 +901,7 @@ function Make(Ord) { ], tl: bindings_aux(accu, param.r) }; - continue ; + continue; }; }; let bindings = function (s) { diff --git a/lib/js/moreLabels.js b/lib/js/moreLabels.js index 9f2fde45f1..19be5927e4 100644 --- a/lib/js/moreLabels.js +++ b/lib/js/moreLabels.js @@ -191,7 +191,7 @@ let $$Map = { return param.d; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first_aux = function (_v0, _d0, f, _param) { @@ -210,10 +210,10 @@ let $$Map = { _param = param.l; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -230,7 +230,7 @@ let $$Map = { return find_first_aux(v, param.d, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_first_opt_aux = function (_v0, _d0, f, _param) { @@ -249,10 +249,10 @@ let $$Map = { _param = param.l; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -266,7 +266,7 @@ let $$Map = { return find_first_opt_aux(v, param.d, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_last_aux = function (_v0, _d0, f, _param) { @@ -285,10 +285,10 @@ let $$Map = { _param = param.r; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -305,7 +305,7 @@ let $$Map = { return find_last_aux(v, param.d, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_last_opt_aux = function (_v0, _d0, f, _param) { @@ -324,10 +324,10 @@ let $$Map = { _param = param.r; _d0 = param.d; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -341,7 +341,7 @@ let $$Map = { return find_last_opt_aux(v, param.d, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -355,7 +355,7 @@ let $$Map = { return Caml_option.some(param.d); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let mem = function (x, _param) { @@ -369,7 +369,7 @@ let $$Map = { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let min_binding = function (_param) { @@ -389,7 +389,7 @@ let $$Map = { ]; } _param = l; - continue ; + continue; }; }; let min_binding_opt = function (_param) { @@ -406,7 +406,7 @@ let $$Map = { ]; } _param = l; - continue ; + continue; }; }; let max_binding = function (_param) { @@ -426,7 +426,7 @@ let $$Map = { ]; } _param = r; - continue ; + continue; }; }; let max_binding_opt = function (_param) { @@ -443,7 +443,7 @@ let $$Map = { ]; } _param = r; - continue ; + continue; }; }; let remove_min_binding = function (param) { @@ -562,7 +562,7 @@ let $$Map = { iter(f, param.l); Curry._2(f, param.v, param.d); _param = param.r; - continue ; + continue; }; }; let map = function (f, param) { @@ -607,7 +607,7 @@ let $$Map = { } _accu = Curry._3(f, m.v, m.d, fold(f, m.l, accu)); _m = m.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -623,7 +623,7 @@ let $$Map = { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -639,7 +639,7 @@ let $$Map = { return true; } _param = param.r; - continue ; + continue; }; }; let add_min_binding = function (k, x, param) { @@ -850,7 +850,7 @@ let $$Map = { _3: e }; _m = m.l; - continue ; + continue; }; }; let compare = function (cmp, m1, m2) { @@ -879,7 +879,7 @@ let $$Map = { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let equal = function (cmp, m1, m2) { @@ -906,7 +906,7 @@ let $$Map = { } _e2 = cons_enum(e2._2, e2._3); _e1 = cons_enum(e1._2, e1._3); - continue ; + continue; }; }; let cardinal = function (param) { @@ -931,7 +931,7 @@ let $$Map = { ], tl: bindings_aux(accu, param.r) }; - continue ; + continue; }; }; let bindings = function (s) { @@ -1143,7 +1143,7 @@ let $$Set = { return param.v; } _param = l; - continue ; + continue; }; }; let min_elt_opt = function (_param) { @@ -1157,7 +1157,7 @@ let $$Set = { return Caml_option.some(param.v); } _param = l; - continue ; + continue; }; }; let max_elt = function (_param) { @@ -1174,7 +1174,7 @@ let $$Set = { return param.v; } _param = r; - continue ; + continue; }; }; let max_elt_opt = function (_param) { @@ -1188,7 +1188,7 @@ let $$Set = { return Caml_option.some(param.v); } _param = r; - continue ; + continue; }; }; let remove_min_elt = function (param) { @@ -1276,7 +1276,7 @@ let $$Set = { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let remove = function (x, param) { @@ -1379,7 +1379,7 @@ let $$Set = { _2: e }; _s = s.l; - continue ; + continue; }; }; let compare_aux = function (_e1, _e2) { @@ -1402,7 +1402,7 @@ let $$Set = { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; }; let compare = function (s1, s2) { @@ -1433,7 +1433,7 @@ let $$Set = { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -1446,7 +1446,7 @@ let $$Set = { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -1458,7 +1458,7 @@ let $$Set = { return false; } _s1 = l1; - continue ; + continue; }; }; let iter = function (f, _param) { @@ -1470,7 +1470,7 @@ let $$Set = { iter(f, param.l); Curry._1(f, param.v); _param = param.r; - continue ; + continue; }; }; let fold = function (f, _s, _accu) { @@ -1482,7 +1482,7 @@ let $$Set = { } _accu = Curry._2(f, s.v, fold(f, s.l, accu)); _s = s.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -1498,7 +1498,7 @@ let $$Set = { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -1514,7 +1514,7 @@ let $$Set = { return true; } _param = param.r; - continue ; + continue; }; }; let filter = function (p, param) { @@ -1583,7 +1583,7 @@ let $$Set = { hd: param.v, tl: elements_aux(accu, param.r) }; - continue ; + continue; }; }; let elements = function (s) { @@ -1604,7 +1604,7 @@ let $$Set = { return v; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first_aux = function (_v0, f, _param) { @@ -1618,10 +1618,10 @@ let $$Set = { if (Curry._1(f, v)) { _param = param.l; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -1638,7 +1638,7 @@ let $$Set = { return find_first_aux(v, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_first_opt_aux = function (_v0, f, _param) { @@ -1652,10 +1652,10 @@ let $$Set = { if (Curry._1(f, v)) { _param = param.l; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -1669,7 +1669,7 @@ let $$Set = { return find_first_opt_aux(v, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_last_aux = function (_v0, f, _param) { @@ -1683,10 +1683,10 @@ let $$Set = { if (Curry._1(f, v)) { _param = param.r; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -1703,7 +1703,7 @@ let $$Set = { return find_last_aux(v, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_last_opt_aux = function (_v0, f, _param) { @@ -1717,10 +1717,10 @@ let $$Set = { if (Curry._1(f, v)) { _param = param.r; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -1734,7 +1734,7 @@ let $$Set = { return find_last_opt_aux(v, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -1749,7 +1749,7 @@ let $$Set = { return Caml_option.some(v); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let try_join = function (l, v, r) { diff --git a/lib/js/parsing.js b/lib/js/parsing.js index 466de81043..199bac3a30 100644 --- a/lib/js/parsing.js +++ b/lib/js/parsing.js @@ -86,7 +86,7 @@ function yyparse(tables, start, lexer, lexbuf) { env.symb_end = lexbuf.lex_curr_p; _arg = t; _cmd = "Token_read"; - continue ; + continue; case "Raise_parse_error" : throw { RE_EXN_ID: Parse_error, @@ -96,12 +96,12 @@ function yyparse(tables, start, lexer, lexbuf) { grow_stacks(); _arg = undefined; _cmd = "Stacks_grown_1"; - continue ; + continue; case "Grow_stacks_2" : grow_stacks(); _arg = undefined; _cmd = "Stacks_grown_2"; - continue ; + continue; case "Compute_semantic_action" : let match$1; try { @@ -123,12 +123,12 @@ function yyparse(tables, start, lexer, lexbuf) { } _arg = match$1[1]; _cmd = match$1[0]; - continue ; + continue; case "Call_error_function" : Curry._1(tables.error_function, "syntax error"); _arg = undefined; _cmd = "Error_detected"; - continue ; + continue; } }; @@ -174,7 +174,7 @@ function symbol_start_pos(param) { return st; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/pervasives.js b/lib/js/pervasives.js index 75ca9bd08e..7adf63be04 100644 --- a/lib/js/pervasives.js +++ b/lib/js/pervasives.js @@ -133,13 +133,13 @@ function valid_float_lexem(s) { return s; } _i = i + 1 | 0; - continue ; + continue; } if (match !== 45) { return s; } _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/pervasivesU.js b/lib/js/pervasivesU.js index 823250ab49..97d3f65193 100644 --- a/lib/js/pervasivesU.js +++ b/lib/js/pervasivesU.js @@ -132,13 +132,13 @@ function valid_float_lexem(s) { return s; } _i = i + 1 | 0; - continue ; + continue; } if (match !== 45) { return s; } _i = i + 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/queue.js b/lib/js/queue.js index 5b1774e810..924f3e0496 100644 --- a/lib/js/queue.js +++ b/lib/js/queue.js @@ -95,7 +95,7 @@ function copy(q) { } _cell = next; _prev = res; - continue ; + continue; }; } @@ -117,7 +117,7 @@ function iter(f, q) { let next = cell.next; Curry._1(f, cell.content); _cell = next; - continue ; + continue; }; } @@ -134,7 +134,7 @@ function fold(f, accu, q) { let accu$2 = Curry._2(f, accu$1, cell.content); _cell = next; _accu = accu$2; - continue ; + continue; }; } diff --git a/lib/js/random.js b/lib/js/random.js index 9ead241098..62741eebc1 100644 --- a/lib/js/random.js +++ b/lib/js/random.js @@ -87,7 +87,7 @@ function $$int(s, bound) { if ((r - v | 0) <= ((1073741823 - bound | 0) + 1 | 0)) { return v; } - continue ; + continue; }; } @@ -107,7 +107,7 @@ function int32(s, bound) { if ((r - v | 0) <= ((Int32.max_int - bound | 0) + 1 | 0)) { return v; } - continue ; + continue; }; } @@ -128,7 +128,7 @@ function int64(s, bound) { if (!Caml.i64_gt(Caml_int64.sub(r, v), Caml_int64.add(Caml_int64.sub(Int64.max_int, bound), Caml_int64.one))) { return v; } - continue ; + continue; }; } diff --git a/lib/js/set.js b/lib/js/set.js index b0b8660849..df70fe959f 100644 --- a/lib/js/set.js +++ b/lib/js/set.js @@ -170,7 +170,7 @@ function Make(funarg) { return param.v; } _param = l; - continue ; + continue; }; }; let min_elt_opt = function (_param) { @@ -184,7 +184,7 @@ function Make(funarg) { return Caml_option.some(param.v); } _param = l; - continue ; + continue; }; }; let max_elt = function (_param) { @@ -201,7 +201,7 @@ function Make(funarg) { return param.v; } _param = r; - continue ; + continue; }; }; let max_elt_opt = function (_param) { @@ -215,7 +215,7 @@ function Make(funarg) { return Caml_option.some(param.v); } _param = r; - continue ; + continue; }; }; let remove_min_elt = function (param) { @@ -294,7 +294,7 @@ function Make(funarg) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let remove = function (x, param) { @@ -403,7 +403,7 @@ function Make(funarg) { _2: e }; _s = s.l; - continue ; + continue; }; }; let compare = function (s1, s2) { @@ -428,7 +428,7 @@ function Make(funarg) { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; }; let equal = function (s1, s2) { @@ -456,7 +456,7 @@ function Make(funarg) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -469,7 +469,7 @@ function Make(funarg) { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -481,7 +481,7 @@ function Make(funarg) { return false; } _s1 = l1; - continue ; + continue; }; }; let iter = function (f, _param) { @@ -493,7 +493,7 @@ function Make(funarg) { iter(f, param.l); Curry._1(f, param.v); _param = param.r; - continue ; + continue; }; }; let fold = function (f, _s, _accu) { @@ -505,7 +505,7 @@ function Make(funarg) { } _accu = Curry._2(f, s.v, fold(f, s.l, accu)); _s = s.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -521,7 +521,7 @@ function Make(funarg) { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -537,7 +537,7 @@ function Make(funarg) { return true; } _param = param.r; - continue ; + continue; }; }; let filter = function (p, param) { @@ -606,7 +606,7 @@ function Make(funarg) { hd: param.v, tl: elements_aux(accu, param.r) }; - continue ; + continue; }; }; let elements = function (s) { @@ -627,7 +627,7 @@ function Make(funarg) { return v; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -653,14 +653,14 @@ function Make(funarg) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -683,14 +683,14 @@ function Make(funarg) { if (Curry._1(f, v$1)) { _param$1 = param$1.l; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.r; - continue ; + continue; }; } _param = param.r; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -716,14 +716,14 @@ function Make(funarg) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -746,14 +746,14 @@ function Make(funarg) { if (Curry._1(f, v$1)) { _param$1 = param$1.r; _v0 = v$1; - continue ; + continue; } _param$1 = param$1.l; - continue ; + continue; }; } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -768,7 +768,7 @@ function Make(funarg) { return Caml_option.some(v); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let map = function (f, param) { diff --git a/lib/js/setLabels.js b/lib/js/setLabels.js index 4d52f2d2b8..ca7d416d3e 100644 --- a/lib/js/setLabels.js +++ b/lib/js/setLabels.js @@ -170,7 +170,7 @@ function Make(Ord) { return param.v; } _param = l; - continue ; + continue; }; }; let min_elt_opt = function (_param) { @@ -184,7 +184,7 @@ function Make(Ord) { return Caml_option.some(param.v); } _param = l; - continue ; + continue; }; }; let max_elt = function (_param) { @@ -201,7 +201,7 @@ function Make(Ord) { return param.v; } _param = r; - continue ; + continue; }; }; let max_elt_opt = function (_param) { @@ -215,7 +215,7 @@ function Make(Ord) { return Caml_option.some(param.v); } _param = r; - continue ; + continue; }; }; let remove_min_elt = function (param) { @@ -303,7 +303,7 @@ function Make(Ord) { return true; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let remove = function (x, param) { @@ -406,7 +406,7 @@ function Make(Ord) { _2: e }; _s = s.l; - continue ; + continue; }; }; let compare_aux = function (_e1, _e2) { @@ -429,7 +429,7 @@ function Make(Ord) { } _e2 = cons_enum(e2._1, e2._2); _e1 = cons_enum(e1._1, e1._2); - continue ; + continue; }; }; let compare = function (s1, s2) { @@ -460,7 +460,7 @@ function Make(Ord) { } _s2 = r2; _s1 = r1; - continue ; + continue; } if (c < 0) { if (!subset({ @@ -473,7 +473,7 @@ function Make(Ord) { return false; } _s1 = r1; - continue ; + continue; } if (!subset({ TAG: "Node", @@ -485,7 +485,7 @@ function Make(Ord) { return false; } _s1 = l1; - continue ; + continue; }; }; let iter = function (f, _param) { @@ -497,7 +497,7 @@ function Make(Ord) { iter(f, param.l); Curry._1(f, param.v); _param = param.r; - continue ; + continue; }; }; let fold = function (f, _s, _accu) { @@ -509,7 +509,7 @@ function Make(Ord) { } _accu = Curry._2(f, s.v, fold(f, s.l, accu)); _s = s.r; - continue ; + continue; }; }; let for_all = function (p, _param) { @@ -525,7 +525,7 @@ function Make(Ord) { return false; } _param = param.r; - continue ; + continue; }; }; let exists = function (p, _param) { @@ -541,7 +541,7 @@ function Make(Ord) { return true; } _param = param.r; - continue ; + continue; }; }; let filter = function (p, param) { @@ -610,7 +610,7 @@ function Make(Ord) { hd: param.v, tl: elements_aux(accu, param.r) }; - continue ; + continue; }; }; let elements = function (s) { @@ -631,7 +631,7 @@ function Make(Ord) { return v; } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let find_first_aux = function (_v0, f, _param) { @@ -645,10 +645,10 @@ function Make(Ord) { if (Curry._1(f, v)) { _param = param.l; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first = function (f, _param) { @@ -665,7 +665,7 @@ function Make(Ord) { return find_first_aux(v, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_first_opt_aux = function (_v0, f, _param) { @@ -679,10 +679,10 @@ function Make(Ord) { if (Curry._1(f, v)) { _param = param.l; _v0 = v; - continue ; + continue; } _param = param.r; - continue ; + continue; }; }; let find_first_opt = function (f, _param) { @@ -696,7 +696,7 @@ function Make(Ord) { return find_first_opt_aux(v, f, param.l); } _param = param.r; - continue ; + continue; }; }; let find_last_aux = function (_v0, f, _param) { @@ -710,10 +710,10 @@ function Make(Ord) { if (Curry._1(f, v)) { _param = param.r; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last = function (f, _param) { @@ -730,7 +730,7 @@ function Make(Ord) { return find_last_aux(v, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_last_opt_aux = function (_v0, f, _param) { @@ -744,10 +744,10 @@ function Make(Ord) { if (Curry._1(f, v)) { _param = param.r; _v0 = v; - continue ; + continue; } _param = param.l; - continue ; + continue; }; }; let find_last_opt = function (f, _param) { @@ -761,7 +761,7 @@ function Make(Ord) { return find_last_opt_aux(v, f, param.r); } _param = param.l; - continue ; + continue; }; }; let find_opt = function (x, _param) { @@ -776,7 +776,7 @@ function Make(Ord) { return Caml_option.some(v); } _param = c < 0 ? param.l : param.r; - continue ; + continue; }; }; let try_join = function (l, v, r) { diff --git a/lib/js/sort.js b/lib/js/sort.js index b2b980796b..3f0ee1d4c8 100644 --- a/lib/js/sort.js +++ b/lib/js/sort.js @@ -82,7 +82,7 @@ function list(order, l) { return param.hd; } _param = merge2(param); - continue ; + continue; }; } @@ -137,11 +137,11 @@ function array(cmp, arr) { if ((j - lo | 0) <= (hi - i | 0)) { qsort(lo, j); _lo = i; - continue ; + continue; } qsort(i, hi); _hi = j; - continue ; + continue; }; }; qsort(0, arr.length - 1 | 0); diff --git a/lib/js/stream.js b/lib/js/stream.js index 4ae7bf4905..edac95596b 100644 --- a/lib/js/stream.js +++ b/lib/js/stream.js @@ -42,7 +42,7 @@ function get_data(count, _d) { let match = get_data(count, d._0); if (typeof match !== "object") { _d = d2; - continue ; + continue; } if (match.TAG === "Scons") { return { @@ -66,7 +66,7 @@ function get_data(count, _d) { }; case "Slazy" : _d = CamlinternalLazy.force(d._0); - continue ; + continue; case "Sgen" : let g = d._0; let match$1 = g.curr; @@ -128,7 +128,7 @@ function peek_data(s) { }; case "Slazy" : s.data = CamlinternalLazy.force(f._0); - continue ; + continue; case "Sgen" : let g = f._0; let a = g.curr; @@ -176,7 +176,7 @@ function junk_data(s) { if (match$1 === undefined) { return; } - continue ; + continue; }; } @@ -264,7 +264,7 @@ function iter(f, strm) { junk(strm); Curry._1(f, Caml_option.valFromOption(a)); _param = undefined; - continue ; + continue; }; } diff --git a/lib/js/string.js b/lib/js/string.js index 6e230f1125..1b05edb5d0 100644 --- a/lib/js/string.js +++ b/lib/js/string.js @@ -71,13 +71,13 @@ function escaped(s) { return true; } _i = i + 1 | 0; - continue ; + continue; } if (match > 91 || match < 35) { return true; } _i = i + 1 | 0; - continue ; + continue; }; }; if (needs_escape(0)) { @@ -100,7 +100,7 @@ function index_rec(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -118,7 +118,7 @@ function index_rec_opt(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -163,7 +163,7 @@ function rindex_rec(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -192,7 +192,7 @@ function rindex_rec_opt(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } diff --git a/lib/js/stringLabels.js b/lib/js/stringLabels.js index cb39521e4b..ae0939f29c 100644 --- a/lib/js/stringLabels.js +++ b/lib/js/stringLabels.js @@ -73,13 +73,13 @@ function escaped(s) { return true; } _i = i + 1 | 0; - continue ; + continue; } if (match > 91 || match < 35) { return true; } _i = i + 1 | 0; - continue ; + continue; }; }; if (needs_escape(0)) { @@ -102,7 +102,7 @@ function index_rec(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -120,7 +120,7 @@ function index_rec_opt(s, lim, _i, c) { return i; } _i = i + 1 | 0; - continue ; + continue; }; } @@ -165,7 +165,7 @@ function rindex_rec(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; } @@ -194,7 +194,7 @@ function rindex_rec_opt(s, _i, c) { return i; } _i = i - 1 | 0; - continue ; + continue; }; }