diff --git a/CHANGELOG.md b/CHANGELOG.md index 602c95d206..765c686257 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ - Fix issue with record type coercion and unboxed. https://github.com/rescript-lang/rescript-compiler/issues/6158 - Fixed subtype checking for record types with "@as" attributes: The subtype relationship now takes into account the compatibility of "@as" attributes between corresponding fields, ensuring correctness in runtime representation. https://github.com/rescript-lang/rescript-compiler/issues/6158 +- Emit directive above header comment. https://github.com/rescript-lang/rescript-compiler/pull/6172 #### :nail_care: Polish diff --git a/jscomp/core/js_dump_program.ml b/jscomp/core/js_dump_program.ml index 4e40de0320..a11770a836 100644 --- a/jscomp/core/js_dump_program.ml +++ b/jscomp/core/js_dump_program.ml @@ -102,12 +102,13 @@ let es6_program ~output_dir fmt f (x : J.deps_program) = let pp_deps_program ~(output_prefix : string) (kind : Js_packages_info.module_system) (program : J.deps_program) (f : Ext_pp.t) = - if not !Js_config.no_version_header then ( - P.string f Bs_version.header; - P.newline f); + !Js_config.directives |> List.iter (fun prim -> P.string f prim; P.newline f); + if not !Js_config.no_version_header then ( + P.string f Bs_version.header; + P.newline f); if deps_program_is_empty program then P.string f empty_explanation (* This is empty module, it won't be referred anywhere *) diff --git a/jscomp/test/406_primitive_test.js b/jscomp/test/406_primitive_test.js index 15401a6637..63c11c6e41 100644 --- a/jscomp/test/406_primitive_test.js +++ b/jscomp/test/406_primitive_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/DotDotDot.js b/jscomp/test/DotDotDot.js index 011f4ba327..f95e0bd8df 100644 --- a/jscomp/test/DotDotDot.js +++ b/jscomp/test/DotDotDot.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/EmptyRecord.js b/jscomp/test/EmptyRecord.js index 482eda8cb5..5d56a17695 100644 --- a/jscomp/test/EmptyRecord.js +++ b/jscomp/test/EmptyRecord.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/RecordCoercion.js b/jscomp/test/RecordCoercion.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/RecordCoercion.js +++ b/jscomp/test/RecordCoercion.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/RecordOrObject.js b/jscomp/test/RecordOrObject.js index b754b442d1..c972f7516b 100644 --- a/jscomp/test/RecordOrObject.js +++ b/jscomp/test/RecordOrObject.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/SafePromises.js b/jscomp/test/SafePromises.js index 683c9492ed..8e6e7fa6fe 100644 --- a/jscomp/test/SafePromises.js +++ b/jscomp/test/SafePromises.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Js_promise2 = require("../../lib/js/js_promise2.js"); diff --git a/jscomp/test/UncurriedAlways.js b/jscomp/test/UncurriedAlways.js index 0c8a07287f..ed411950a6 100644 --- a/jscomp/test/UncurriedAlways.js +++ b/jscomp/test/UncurriedAlways.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/UncurriedExternals.js b/jscomp/test/UncurriedExternals.js index 96748710c9..651a1f3663 100644 --- a/jscomp/test/UncurriedExternals.js +++ b/jscomp/test/UncurriedExternals.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var React = require("react"); diff --git a/jscomp/test/UncurriedPervasives.js b/jscomp/test/UncurriedPervasives.js index b2b01307d2..9bb777e72f 100644 --- a/jscomp/test/UncurriedPervasives.js +++ b/jscomp/test/UncurriedPervasives.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/UntaggedVariants.js b/jscomp/test/UntaggedVariants.js index b3c26e2480..2ee7d68e51 100644 --- a/jscomp/test/UntaggedVariants.js +++ b/jscomp/test/UntaggedVariants.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/a.js b/jscomp/test/a.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/a.js +++ b/jscomp/test/a.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/a_filename_test.js b/jscomp/test/a_filename_test.js index dcc95143d8..ef2665e0fa 100644 --- a/jscomp/test/a_filename_test.js +++ b/jscomp/test/a_filename_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/a_list_test.js b/jscomp/test/a_list_test.js index cba41212e1..462476f90c 100644 --- a/jscomp/test/a_list_test.js +++ b/jscomp/test/a_list_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/a_recursive_type.js b/jscomp/test/a_recursive_type.js index ef05725e66..5f102e5805 100644 --- a/jscomp/test/a_recursive_type.js +++ b/jscomp/test/a_recursive_type.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/a_scope_bug.js b/jscomp/test/a_scope_bug.js index e968db4be4..b2220ebda7 100644 --- a/jscomp/test/a_scope_bug.js +++ b/jscomp/test/a_scope_bug.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/a_string_test.js b/jscomp/test/a_string_test.js index 762c3f39f9..97a888daca 100644 --- a/jscomp/test/a_string_test.js +++ b/jscomp/test/a_string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/abstract_type.js b/jscomp/test/abstract_type.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/abstract_type.js +++ b/jscomp/test/abstract_type.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/adt_optimize_test.js b/jscomp/test/adt_optimize_test.js index 16b61a376b..7a1bc36229 100644 --- a/jscomp/test/adt_optimize_test.js +++ b/jscomp/test/adt_optimize_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/alias_default_value_test.js b/jscomp/test/alias_default_value_test.js index 41bb57733f..110c50e35e 100644 --- a/jscomp/test/alias_default_value_test.js +++ b/jscomp/test/alias_default_value_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/alias_test.js b/jscomp/test/alias_test.js index f6c616a994..924eb499f8 100644 --- a/jscomp/test/alias_test.js +++ b/jscomp/test/alias_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_string = require("../../lib/js/caml_string.js"); diff --git a/jscomp/test/and_or_tailcall_test.js b/jscomp/test/and_or_tailcall_test.js index b4574ae9c7..8e5a02cebd 100644 --- a/jscomp/test/and_or_tailcall_test.js +++ b/jscomp/test/and_or_tailcall_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/app_root_finder.js b/jscomp/test/app_root_finder.js index 12ddf27741..832357e2f4 100644 --- a/jscomp/test/app_root_finder.js +++ b/jscomp/test/app_root_finder.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Fs = require("fs"); diff --git a/jscomp/test/argv_test.js b/jscomp/test/argv_test.js index 935a66e16d..f15e97a4c1 100644 --- a/jscomp/test/argv_test.js +++ b/jscomp/test/argv_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Arg = require("../../lib/js/arg.js"); diff --git a/jscomp/test/ari_regress_test.js b/jscomp/test/ari_regress_test.js index 1cb218e9b5..f61c720afc 100644 --- a/jscomp/test/ari_regress_test.js +++ b/jscomp/test/ari_regress_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/arith_lexer.js b/jscomp/test/arith_lexer.js index c1b4d4c0d7..ce03ea38a2 100644 --- a/jscomp/test/arith_lexer.js +++ b/jscomp/test/arith_lexer.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/arith_parser.js b/jscomp/test/arith_parser.js index ed3ab5f0a3..dcbd92c374 100644 --- a/jscomp/test/arith_parser.js +++ b/jscomp/test/arith_parser.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Parsing = require("../../lib/js/parsing.js"); diff --git a/jscomp/test/arith_syntax.js b/jscomp/test/arith_syntax.js index c042f05fd1..d56fe97058 100644 --- a/jscomp/test/arith_syntax.js +++ b/jscomp/test/arith_syntax.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Pervasives = require("../../lib/js/pervasives.js"); diff --git a/jscomp/test/arity.js b/jscomp/test/arity.js index 825585516c..e265276a6c 100644 --- a/jscomp/test/arity.js +++ b/jscomp/test/arity.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/arity_deopt.js b/jscomp/test/arity_deopt.js index a3436d0239..2a17561739 100644 --- a/jscomp/test/arity_deopt.js +++ b/jscomp/test/arity_deopt.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/arity_infer.js b/jscomp/test/arity_infer.js index 652210fe15..2abbfa16fa 100644 --- a/jscomp/test/arity_infer.js +++ b/jscomp/test/arity_infer.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/array_data_util.js b/jscomp/test/array_data_util.js index 30630aa2e7..7a846581e3 100644 --- a/jscomp/test/array_data_util.js +++ b/jscomp/test/array_data_util.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Belt_Array = require("../../lib/js/belt_Array.js"); diff --git a/jscomp/test/array_safe_get.js b/jscomp/test/array_safe_get.js index ba55e7cfee..7a539a12fe 100644 --- a/jscomp/test/array_safe_get.js +++ b/jscomp/test/array_safe_get.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_array = require("../../lib/js/caml_array.js"); diff --git a/jscomp/test/array_subtle_test.js b/jscomp/test/array_subtle_test.js index 4b61e6488a..be8be1555f 100644 --- a/jscomp/test/array_subtle_test.js +++ b/jscomp/test/array_subtle_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/array_test.js b/jscomp/test/array_test.js index b5a7c39f99..a12d2f9d75 100644 --- a/jscomp/test/array_test.js +++ b/jscomp/test/array_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/ast_abstract_test.js b/jscomp/test/ast_abstract_test.js index f59273c880..01ba5257a9 100644 --- a/jscomp/test/ast_abstract_test.js +++ b/jscomp/test/ast_abstract_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/ast_mapper_unused_warning_test.js b/jscomp/test/ast_mapper_unused_warning_test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/ast_mapper_unused_warning_test.js +++ b/jscomp/test/ast_mapper_unused_warning_test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/async_await.js b/jscomp/test/async_await.js index d392d5d4b7..6b77ece736 100644 --- a/jscomp/test/async_await.js +++ b/jscomp/test/async_await.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_array = require("../../lib/js/caml_array.js"); diff --git a/jscomp/test/async_ideas.js b/jscomp/test/async_ideas.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/async_ideas.js +++ b/jscomp/test/async_ideas.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/async_inline.js b/jscomp/test/async_inline.js index 201e7b2f13..0e2191d0fa 100644 --- a/jscomp/test/async_inline.js +++ b/jscomp/test/async_inline.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/attr_test.js b/jscomp/test/attr_test.js index 7e6a1736fc..72d0bdde2c 100644 --- a/jscomp/test/attr_test.js +++ b/jscomp/test/attr_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/b.js b/jscomp/test/b.js index 7c8d618c37..f9e7f93d9c 100644 --- a/jscomp/test/b.js +++ b/jscomp/test/b.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/bal_set_mini.js b/jscomp/test/bal_set_mini.js index b323870633..e97a438332 100644 --- a/jscomp/test/bal_set_mini.js +++ b/jscomp/test/bal_set_mini.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/bang_primitive.js b/jscomp/test/bang_primitive.js index 14bb492c0e..042f967d9d 100644 --- a/jscomp/test/bang_primitive.js +++ b/jscomp/test/bang_primitive.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/basic_module_test.js b/jscomp/test/basic_module_test.js index 7663e94c56..1fa8240979 100644 --- a/jscomp/test/basic_module_test.js +++ b/jscomp/test/basic_module_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bb.js b/jscomp/test/bb.js index 8dfada5858..8aa3297180 100644 --- a/jscomp/test/bb.js +++ b/jscomp/test/bb.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/bdd.js b/jscomp/test/bdd.js index fd74ef93f8..92e4100b44 100644 --- a/jscomp/test/bdd.js +++ b/jscomp/test/bdd.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_array = require("../../lib/js/caml_array.js"); diff --git a/jscomp/test/belt_internal_test.js b/jscomp/test/belt_internal_test.js index 635ae4abcf..7580f76ea6 100644 --- a/jscomp/test/belt_internal_test.js +++ b/jscomp/test/belt_internal_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/belt_result_alias_test.js b/jscomp/test/belt_result_alias_test.js index 3d36f54299..b66a69291e 100644 --- a/jscomp/test/belt_result_alias_test.js +++ b/jscomp/test/belt_result_alias_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Belt_Result = require("../../lib/js/belt_Result.js"); diff --git a/jscomp/test/bench.js b/jscomp/test/bench.js index 201887d0dc..bd6f9c2804 100644 --- a/jscomp/test/bench.js +++ b/jscomp/test/bench.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/big_enum.js b/jscomp/test/big_enum.js index dee062ed24..c1d5ed7922 100644 --- a/jscomp/test/big_enum.js +++ b/jscomp/test/big_enum.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/big_polyvar_test.js b/jscomp/test/big_polyvar_test.js index 960362a6aa..0a95c8931e 100644 --- a/jscomp/test/big_polyvar_test.js +++ b/jscomp/test/big_polyvar_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/block_alias_test.js b/jscomp/test/block_alias_test.js index bd3317d67c..f74dce09ac 100644 --- a/jscomp/test/block_alias_test.js +++ b/jscomp/test/block_alias_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/boolean_test.js b/jscomp/test/boolean_test.js index 952e35b0e9..2f60072ef0 100644 --- a/jscomp/test/boolean_test.js +++ b/jscomp/test/boolean_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_MapInt_test.js b/jscomp/test/bs_MapInt_test.js index fb344d5304..affc4e0246 100644 --- a/jscomp/test/bs_MapInt_test.js +++ b/jscomp/test/bs_MapInt_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Js_exn = require("../../lib/js/js_exn.js"); diff --git a/jscomp/test/bs_abstract_test.js b/jscomp/test/bs_abstract_test.js index 84c05a55d6..2590040e73 100644 --- a/jscomp/test/bs_abstract_test.js +++ b/jscomp/test/bs_abstract_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/bs_array_test.js b/jscomp/test/bs_array_test.js index 7fb6c92177..08205ad63e 100644 --- a/jscomp/test/bs_array_test.js +++ b/jscomp/test/bs_array_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_auto_uncurry.js b/jscomp/test/bs_auto_uncurry.js index 894826bfd6..7713d21050 100644 --- a/jscomp/test/bs_auto_uncurry.js +++ b/jscomp/test/bs_auto_uncurry.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/bs_auto_uncurry_test.js b/jscomp/test/bs_auto_uncurry_test.js index 3a4ecada54..f3a65302d3 100644 --- a/jscomp/test/bs_auto_uncurry_test.js +++ b/jscomp/test/bs_auto_uncurry_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_float_test.js b/jscomp/test/bs_float_test.js index ed0e445be7..e124c86d48 100644 --- a/jscomp/test/bs_float_test.js +++ b/jscomp/test/bs_float_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_hashmap_test.js b/jscomp/test/bs_hashmap_test.js index 7a96432d4f..10c30c94cc 100644 --- a/jscomp/test/bs_hashmap_test.js +++ b/jscomp/test/bs_hashmap_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_hashset_int_test.js b/jscomp/test/bs_hashset_int_test.js index ae60b574d5..f75660f9cc 100644 --- a/jscomp/test/bs_hashset_int_test.js +++ b/jscomp/test/bs_hashset_int_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_hashtbl_string_test.js b/jscomp/test/bs_hashtbl_string_test.js index 6877fba686..66a8c76044 100644 --- a/jscomp/test/bs_hashtbl_string_test.js +++ b/jscomp/test/bs_hashtbl_string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/bs_ignore_effect.js b/jscomp/test/bs_ignore_effect.js index 333171d7dc..7b2e9394b9 100644 --- a/jscomp/test/bs_ignore_effect.js +++ b/jscomp/test/bs_ignore_effect.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_ignore_test.js b/jscomp/test/bs_ignore_test.js index 79070b8bc4..91f0a7b25b 100644 --- a/jscomp/test/bs_ignore_test.js +++ b/jscomp/test/bs_ignore_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/bs_int_test.js b/jscomp/test/bs_int_test.js index 65b36cba5a..3f7a90d22b 100644 --- a/jscomp/test/bs_int_test.js +++ b/jscomp/test/bs_int_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_list_test.js b/jscomp/test/bs_list_test.js index 2d3e3b562a..788934f3c5 100644 --- a/jscomp/test/bs_list_test.js +++ b/jscomp/test/bs_list_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_map_set_dict_test.js b/jscomp/test/bs_map_set_dict_test.js index 54a77f2643..25c8beb3ff 100644 --- a/jscomp/test/bs_map_set_dict_test.js +++ b/jscomp/test/bs_map_set_dict_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_map_test.js b/jscomp/test/bs_map_test.js index 298044243b..ac204f9f7f 100644 --- a/jscomp/test/bs_map_test.js +++ b/jscomp/test/bs_map_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_min_max_test.js b/jscomp/test/bs_min_max_test.js index abd62a38e0..850139a42f 100644 --- a/jscomp/test/bs_min_max_test.js +++ b/jscomp/test/bs_min_max_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_mutable_set_test.js b/jscomp/test/bs_mutable_set_test.js index 748f07be94..bc6b575833 100644 --- a/jscomp/test/bs_mutable_set_test.js +++ b/jscomp/test/bs_mutable_set_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_node_string_buffer_test.js b/jscomp/test/bs_node_string_buffer_test.js index 05555da2f0..ddefdbd0b1 100644 --- a/jscomp/test/bs_node_string_buffer_test.js +++ b/jscomp/test/bs_node_string_buffer_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Node = require("../../lib/js/node.js"); diff --git a/jscomp/test/bs_poly_map_test.js b/jscomp/test/bs_poly_map_test.js index 4c71de8264..07accf3b4f 100644 --- a/jscomp/test/bs_poly_map_test.js +++ b/jscomp/test/bs_poly_map_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_poly_mutable_map_test.js b/jscomp/test/bs_poly_mutable_map_test.js index 631314f15c..1237d06ae1 100644 --- a/jscomp/test/bs_poly_mutable_map_test.js +++ b/jscomp/test/bs_poly_mutable_map_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_poly_mutable_set_test.js b/jscomp/test/bs_poly_mutable_set_test.js index 42e6afb538..a2a1a92556 100644 --- a/jscomp/test/bs_poly_mutable_set_test.js +++ b/jscomp/test/bs_poly_mutable_set_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_poly_set_test.js b/jscomp/test/bs_poly_set_test.js index 044420bd99..d2a95f712b 100644 --- a/jscomp/test/bs_poly_set_test.js +++ b/jscomp/test/bs_poly_set_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_qualified.js b/jscomp/test/bs_qualified.js index 64e6b4b0cb..b040211d88 100644 --- a/jscomp/test/bs_qualified.js +++ b/jscomp/test/bs_qualified.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var ZZ = require("X"); diff --git a/jscomp/test/bs_queue_test.js b/jscomp/test/bs_queue_test.js index bd2cd4e474..7c55cc79c1 100644 --- a/jscomp/test/bs_queue_test.js +++ b/jscomp/test/bs_queue_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_rbset_int_bench.js b/jscomp/test/bs_rbset_int_bench.js index 2fd2608011..84b9732348 100644 --- a/jscomp/test/bs_rbset_int_bench.js +++ b/jscomp/test/bs_rbset_int_bench.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Rbset = require("./rbset.js"); diff --git a/jscomp/test/bs_rest_test.js b/jscomp/test/bs_rest_test.js index 45e51b726e..23f13954af 100644 --- a/jscomp/test/bs_rest_test.js +++ b/jscomp/test/bs_rest_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/bs_set_bench.js b/jscomp/test/bs_set_bench.js index 8705251989..f0583c36bd 100644 --- a/jscomp/test/bs_set_bench.js +++ b/jscomp/test/bs_set_bench.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Belt_SetInt = require("../../lib/js/belt_SetInt.js"); diff --git a/jscomp/test/bs_set_int_test.js b/jscomp/test/bs_set_int_test.js index 6004ba6e91..77c7589ca0 100644 --- a/jscomp/test/bs_set_int_test.js +++ b/jscomp/test/bs_set_int_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_sort_test.js b/jscomp/test/bs_sort_test.js index 47db8cc059..1ee8bbce68 100644 --- a/jscomp/test/bs_sort_test.js +++ b/jscomp/test/bs_sort_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_splice_partial.js b/jscomp/test/bs_splice_partial.js index 3f23e8be26..697fc4aa41 100644 --- a/jscomp/test/bs_splice_partial.js +++ b/jscomp/test/bs_splice_partial.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/bs_stack_test.js b/jscomp/test/bs_stack_test.js index 913bcca16d..1cde971cdf 100644 --- a/jscomp/test/bs_stack_test.js +++ b/jscomp/test/bs_stack_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_string_test.js b/jscomp/test/bs_string_test.js index 1ab878c5d1..2c5686d1d5 100644 --- a/jscomp/test/bs_string_test.js +++ b/jscomp/test/bs_string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/bs_unwrap_test.js b/jscomp/test/bs_unwrap_test.js index 44a1432e4b..215b5d5d5e 100644 --- a/jscomp/test/bs_unwrap_test.js +++ b/jscomp/test/bs_unwrap_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/buffer_test.js b/jscomp/test/buffer_test.js index abf0948bc8..03d605d684 100644 --- a/jscomp/test/buffer_test.js +++ b/jscomp/test/buffer_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/build.ninja b/jscomp/test/build.ninja index 5148d7652f..94e919a52d 100644 --- a/jscomp/test/build.ninja +++ b/jscomp/test/build.ninja @@ -1,5 +1,5 @@ -bsc_flags = -bs-no-version-header -bs-cross-module-opt -make-runtime-test -bs-package-output commonjs:jscomp/test -w -3-6-26-27-29-30-32..40-44-45-52-60-9-106+104 -warn-error A -I runtime -I $stdlib -I others +bsc_flags = -bs-cross-module-opt -make-runtime-test -bs-package-output commonjs:jscomp/test -w -3-6-26-27-29-30-32..40-44-45-52-60-9-106+104 -warn-error A -I runtime -I $stdlib -I others rule cc command = $bsc -bs-cmi -bs-cmj $bsc_flags -I test $in diff --git a/jscomp/test/bytes_split_gpr_743_test.js b/jscomp/test/bytes_split_gpr_743_test.js index 2fe25e5e18..f0ffd0537d 100644 --- a/jscomp/test/bytes_split_gpr_743_test.js +++ b/jscomp/test/bytes_split_gpr_743_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/caml_compare_bigint_test.js b/jscomp/test/caml_compare_bigint_test.js index 133014ec20..ab3ad10d88 100644 --- a/jscomp/test/caml_compare_bigint_test.js +++ b/jscomp/test/caml_compare_bigint_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/caml_compare_test.js b/jscomp/test/caml_compare_test.js index dfb7e9ac7a..f39304506a 100644 --- a/jscomp/test/caml_compare_test.js +++ b/jscomp/test/caml_compare_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/caml_format_test.js b/jscomp/test/caml_format_test.js index f268556077..a8672ae52f 100644 --- a/jscomp/test/caml_format_test.js +++ b/jscomp/test/caml_format_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/caml_sys_poly_fill_test.js b/jscomp/test/caml_sys_poly_fill_test.js index 3812bb06ee..e783a733fe 100644 --- a/jscomp/test/caml_sys_poly_fill_test.js +++ b/jscomp/test/caml_sys_poly_fill_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/chain_code_test.js b/jscomp/test/chain_code_test.js index 84ce83b825..50de370b4b 100644 --- a/jscomp/test/chain_code_test.js +++ b/jscomp/test/chain_code_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/chn_test.js b/jscomp/test/chn_test.js index c35dfd983c..d8d882f1ea 100644 --- a/jscomp/test/chn_test.js +++ b/jscomp/test/chn_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/class_type_ffi_test.js b/jscomp/test/class_type_ffi_test.js index 9357e98015..c412f333f2 100644 --- a/jscomp/test/class_type_ffi_test.js +++ b/jscomp/test/class_type_ffi_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/coercion_module_alias_test.js b/jscomp/test/coercion_module_alias_test.js index 082f5d3c8c..1800a18df1 100644 --- a/jscomp/test/coercion_module_alias_test.js +++ b/jscomp/test/coercion_module_alias_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Char = require("../../lib/js/char.js"); diff --git a/jscomp/test/compare_test.js b/jscomp/test/compare_test.js index b66416d084..723dc38139 100644 --- a/jscomp/test/compare_test.js +++ b/jscomp/test/compare_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/complete_parmatch_test.js b/jscomp/test/complete_parmatch_test.js index 8180622f01..1801659e00 100644 --- a/jscomp/test/complete_parmatch_test.js +++ b/jscomp/test/complete_parmatch_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/complex_if_test.js b/jscomp/test/complex_if_test.js index ac993f814b..fe311b7aa3 100644 --- a/jscomp/test/complex_if_test.js +++ b/jscomp/test/complex_if_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/complex_test.js b/jscomp/test/complex_test.js index 824decbb1c..afe33e828b 100644 --- a/jscomp/test/complex_test.js +++ b/jscomp/test/complex_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/complex_while_loop.js b/jscomp/test/complex_while_loop.js index 2791536b04..6c78cb287e 100644 --- a/jscomp/test/complex_while_loop.js +++ b/jscomp/test/complex_while_loop.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/condition_compilation_test.js b/jscomp/test/condition_compilation_test.js index cd9c9cefcb..3bc735b0aa 100644 --- a/jscomp/test/condition_compilation_test.js +++ b/jscomp/test/condition_compilation_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/config1_test.js b/jscomp/test/config1_test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/config1_test.js +++ b/jscomp/test/config1_test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/console_log_test.js b/jscomp/test/console_log_test.js index 205b124d1b..9a63c34085 100644 --- a/jscomp/test/console_log_test.js +++ b/jscomp/test/console_log_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_obj = require("../../lib/js/caml_obj.js"); diff --git a/jscomp/test/const_block_test.js b/jscomp/test/const_block_test.js index 53ade22a08..6d60450f1f 100644 --- a/jscomp/test/const_block_test.js +++ b/jscomp/test/const_block_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/const_defs.js b/jscomp/test/const_defs.js index b97f694c50..ed299476ec 100644 --- a/jscomp/test/const_defs.js +++ b/jscomp/test/const_defs.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/const_defs_test.js b/jscomp/test/const_defs_test.js index 6bebc8e8fc..aab74fb99c 100644 --- a/jscomp/test/const_defs_test.js +++ b/jscomp/test/const_defs_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/const_test.js b/jscomp/test/const_test.js index a0ab6df38e..53b6172a49 100644 --- a/jscomp/test/const_test.js +++ b/jscomp/test/const_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/cont_int_fold_test.js b/jscomp/test/cont_int_fold_test.js index ae2c18a430..3fa0671aaa 100644 --- a/jscomp/test/cont_int_fold_test.js +++ b/jscomp/test/cont_int_fold_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/cps_test.js b/jscomp/test/cps_test.js index 43d895659d..3fc32e65a8 100644 --- a/jscomp/test/cps_test.js +++ b/jscomp/test/cps_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/cross_module_inline_test.js b/jscomp/test/cross_module_inline_test.js index 5afabc26f1..6c0cb2d15e 100644 --- a/jscomp/test/cross_module_inline_test.js +++ b/jscomp/test/cross_module_inline_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Test_char = require("./test_char.js"); diff --git a/jscomp/test/custom_error_test.js b/jscomp/test/custom_error_test.js index bd1cb4f5f9..93b4a7a751 100644 --- a/jscomp/test/custom_error_test.js +++ b/jscomp/test/custom_error_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Js_exn = require("../../lib/js/js_exn.js"); diff --git a/jscomp/test/debug_keep_test.js b/jscomp/test/debug_keep_test.js index 4c360975c5..6b2d610da8 100644 --- a/jscomp/test/debug_keep_test.js +++ b/jscomp/test/debug_keep_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/debug_mode_value.js b/jscomp/test/debug_mode_value.js index 75e10167b2..bab7b2e781 100644 --- a/jscomp/test/debug_mode_value.js +++ b/jscomp/test/debug_mode_value.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/debug_tmp.js b/jscomp/test/debug_tmp.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/debug_tmp.js +++ b/jscomp/test/debug_tmp.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/debugger_test.js b/jscomp/test/debugger_test.js index d2c6855856..9aa9f45d9e 100644 --- a/jscomp/test/debugger_test.js +++ b/jscomp/test/debugger_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/default_export_test.js b/jscomp/test/default_export_test.js index 9facc02562..7937f7e30a 100644 --- a/jscomp/test/default_export_test.js +++ b/jscomp/test/default_export_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/defunctor_make_test.js b/jscomp/test/defunctor_make_test.js index baff9549ba..2226ddcd86 100644 --- a/jscomp/test/defunctor_make_test.js +++ b/jscomp/test/defunctor_make_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/demo_int_map.js b/jscomp/test/demo_int_map.js index 9480d86069..bfa351a060 100644 --- a/jscomp/test/demo_int_map.js +++ b/jscomp/test/demo_int_map.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/demo_page.js b/jscomp/test/demo_page.js index 4c69f1c3dd..01135e216c 100644 --- a/jscomp/test/demo_page.js +++ b/jscomp/test/demo_page.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/demo_pipe.js b/jscomp/test/demo_pipe.js index 0feefa8ea1..d954464658 100644 --- a/jscomp/test/demo_pipe.js +++ b/jscomp/test/demo_pipe.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/derive_dyntype.js b/jscomp/test/derive_dyntype.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/derive_dyntype.js +++ b/jscomp/test/derive_dyntype.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/derive_projector_test.js b/jscomp/test/derive_projector_test.js index 457e6b0ca5..f68a46d0d9 100644 --- a/jscomp/test/derive_projector_test.js +++ b/jscomp/test/derive_projector_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/derive_type_test.js b/jscomp/test/derive_type_test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/derive_type_test.js +++ b/jscomp/test/derive_type_test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/digest_test.js b/jscomp/test/digest_test.js index 375c5fbd50..fe38db2776 100644 --- a/jscomp/test/digest_test.js +++ b/jscomp/test/digest_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/directives.js b/jscomp/test/directives.js index bb4b96cb17..bb2c1a80d8 100644 --- a/jscomp/test/directives.js +++ b/jscomp/test/directives.js @@ -1,5 +1,6 @@ first directive; second directive; +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Belt_Array = require("../../lib/js/belt_Array.js"); diff --git a/jscomp/test/div_by_zero_test.js b/jscomp/test/div_by_zero_test.js index 0bde0c5417..1143ba4c35 100644 --- a/jscomp/test/div_by_zero_test.js +++ b/jscomp/test/div_by_zero_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/dollar_escape_test.js b/jscomp/test/dollar_escape_test.js index 174951c1ea..963db6708f 100644 --- a/jscomp/test/dollar_escape_test.js +++ b/jscomp/test/dollar_escape_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/earger_curry_test.js b/jscomp/test/earger_curry_test.js index 8c5bb27340..3db1c75c36 100644 --- a/jscomp/test/earger_curry_test.js +++ b/jscomp/test/earger_curry_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/effect.js b/jscomp/test/effect.js index be4bf21723..9dbab81408 100644 --- a/jscomp/test/effect.js +++ b/jscomp/test/effect.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/epsilon_test.js b/jscomp/test/epsilon_test.js index 8ec0602a58..e64f49f0e5 100644 --- a/jscomp/test/epsilon_test.js +++ b/jscomp/test/epsilon_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/equal_box_test.js b/jscomp/test/equal_box_test.js index 9173185854..12d1d4eaed 100644 --- a/jscomp/test/equal_box_test.js +++ b/jscomp/test/equal_box_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/equal_exception_test.js b/jscomp/test/equal_exception_test.js index 3f7ac415c4..454bba7561 100644 --- a/jscomp/test/equal_exception_test.js +++ b/jscomp/test/equal_exception_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/equal_test.js b/jscomp/test/equal_test.js index 993e257107..c7f3bd2662 100644 --- a/jscomp/test/equal_test.js +++ b/jscomp/test/equal_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/es6_export.js b/jscomp/test/es6_export.js index c8e5b89f85..a7e1005573 100644 --- a/jscomp/test/es6_export.js +++ b/jscomp/test/es6_export.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/es6_export.mjs b/jscomp/test/es6_export.mjs index 3cdff994ec..6a4840eb3d 100644 --- a/jscomp/test/es6_export.mjs +++ b/jscomp/test/es6_export.mjs @@ -1,4 +1,4 @@ - +// Generated by ReScript, PLEASE EDIT WITH CARE var $$default = 3; diff --git a/jscomp/test/es6_import.js b/jscomp/test/es6_import.js index 69577e0119..d0d1e8c55a 100644 --- a/jscomp/test/es6_import.js +++ b/jscomp/test/es6_import.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Es6_export = require("./es6_export.js"); diff --git a/jscomp/test/es6_import.mjs b/jscomp/test/es6_import.mjs index ff4362fbd8..c66a104b2f 100644 --- a/jscomp/test/es6_import.mjs +++ b/jscomp/test/es6_import.mjs @@ -1,4 +1,4 @@ - +// Generated by ReScript, PLEASE EDIT WITH CARE import * as Es6_export from "./es6_export.mjs"; diff --git a/jscomp/test/es6_module_test.js b/jscomp/test/es6_module_test.js index 204b8acbb4..6bee56afcb 100644 --- a/jscomp/test/es6_module_test.js +++ b/jscomp/test/es6_module_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/escape_esmodule.js b/jscomp/test/escape_esmodule.js index 15d311fc07..f9f8cafcb3 100644 --- a/jscomp/test/escape_esmodule.js +++ b/jscomp/test/escape_esmodule.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/esmodule_ref.js b/jscomp/test/esmodule_ref.js index a8bb545f91..2afa67236b 100644 --- a/jscomp/test/esmodule_ref.js +++ b/jscomp/test/esmodule_ref.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/event_ffi.js b/jscomp/test/event_ffi.js index 21c2012404..f68c99ff36 100644 --- a/jscomp/test/event_ffi.js +++ b/jscomp/test/event_ffi.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/exception_alias.js b/jscomp/test/exception_alias.js index dfbf2ead15..c83f4f0d39 100644 --- a/jscomp/test/exception_alias.js +++ b/jscomp/test/exception_alias.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/exception_raise_test.js b/jscomp/test/exception_raise_test.js index f6d7c7263b..48138dac16 100644 --- a/jscomp/test/exception_raise_test.js +++ b/jscomp/test/exception_raise_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/exception_rebound_err_test.js b/jscomp/test/exception_rebound_err_test.js index e354fcf713..92e5dc1952 100644 --- a/jscomp/test/exception_rebound_err_test.js +++ b/jscomp/test/exception_rebound_err_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/exception_value_test.js b/jscomp/test/exception_value_test.js index 6ce45492e3..c9f802bfe3 100644 --- a/jscomp/test/exception_value_test.js +++ b/jscomp/test/exception_value_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/exponentiation_precedence_test.js b/jscomp/test/exponentiation_precedence_test.js index 0422eed9ab..49fb7f5e84 100644 --- a/jscomp/test/exponentiation_precedence_test.js +++ b/jscomp/test/exponentiation_precedence_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/export_keyword.js b/jscomp/test/export_keyword.js index e3a1011109..5ac6904154 100644 --- a/jscomp/test/export_keyword.js +++ b/jscomp/test/export_keyword.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/ext_array_test.js b/jscomp/test/ext_array_test.js index 9f4736abb7..63c7b97580 100644 --- a/jscomp/test/ext_array_test.js +++ b/jscomp/test/ext_array_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/ext_bytes_test.js b/jscomp/test/ext_bytes_test.js index 6f51174334..7dbe56621c 100644 --- a/jscomp/test/ext_bytes_test.js +++ b/jscomp/test/ext_bytes_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/ext_filename_test.js b/jscomp/test/ext_filename_test.js index ff27e68ff1..ac159c6afe 100644 --- a/jscomp/test/ext_filename_test.js +++ b/jscomp/test/ext_filename_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Sys = require("../../lib/js/sys.js"); diff --git a/jscomp/test/ext_list_test.js b/jscomp/test/ext_list_test.js index 5a2034e8be..bb16453a47 100644 --- a/jscomp/test/ext_list_test.js +++ b/jscomp/test/ext_list_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/ext_pervasives_test.js b/jscomp/test/ext_pervasives_test.js index 961444f80a..31a1bccb71 100644 --- a/jscomp/test/ext_pervasives_test.js +++ b/jscomp/test/ext_pervasives_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/ext_string_test.js b/jscomp/test/ext_string_test.js index ee11813b24..16a5f6d07a 100644 --- a/jscomp/test/ext_string_test.js +++ b/jscomp/test/ext_string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/ext_sys_test.js b/jscomp/test/ext_sys_test.js index 1191c409ec..5ee49cfb55 100644 --- a/jscomp/test/ext_sys_test.js +++ b/jscomp/test/ext_sys_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Sys = require("../../lib/js/sys.js"); diff --git a/jscomp/test/extensible_variant_test.js b/jscomp/test/extensible_variant_test.js index 9606b8a081..86cc35922a 100644 --- a/jscomp/test/extensible_variant_test.js +++ b/jscomp/test/extensible_variant_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/external_polyfill_test.js b/jscomp/test/external_polyfill_test.js index 7ca767679c..beebe438d4 100644 --- a/jscomp/test/external_polyfill_test.js +++ b/jscomp/test/external_polyfill_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/external_ppx.js b/jscomp/test/external_ppx.js index 79efafc0d1..c727881a0f 100644 --- a/jscomp/test/external_ppx.js +++ b/jscomp/test/external_ppx.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var External_ppxGen = require("./external_ppx.gen"); diff --git a/jscomp/test/external_ppx2.js b/jscomp/test/external_ppx2.js index b8a835e066..048bce8137 100644 --- a/jscomp/test/external_ppx2.js +++ b/jscomp/test/external_ppx2.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/fail_comp.js b/jscomp/test/fail_comp.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/fail_comp.js +++ b/jscomp/test/fail_comp.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/ffi_arity_test.js b/jscomp/test/ffi_arity_test.js index 357d421316..410aaca3b1 100644 --- a/jscomp/test/ffi_arity_test.js +++ b/jscomp/test/ffi_arity_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/ffi_array_test.js b/jscomp/test/ffi_array_test.js index 27facde374..13e53df09a 100644 --- a/jscomp/test/ffi_array_test.js +++ b/jscomp/test/ffi_array_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/ffi_js_test.js b/jscomp/test/ffi_js_test.js index ad94f21fe5..9bb47fecd8 100644 --- a/jscomp/test/ffi_js_test.js +++ b/jscomp/test/ffi_js_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/ffi_splice_test.js b/jscomp/test/ffi_splice_test.js index 4689de540a..a0ee3abbb4 100644 --- a/jscomp/test/ffi_splice_test.js +++ b/jscomp/test/ffi_splice_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/ffi_test.js b/jscomp/test/ffi_test.js index 2716433fb8..3898e73e35 100644 --- a/jscomp/test/ffi_test.js +++ b/jscomp/test/ffi_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/fib.js b/jscomp/test/fib.js index 7374311ae8..bcebe6c966 100644 --- a/jscomp/test/fib.js +++ b/jscomp/test/fib.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/flattern_order_test.js b/jscomp/test/flattern_order_test.js index b300f83ecd..24017629b4 100644 --- a/jscomp/test/flattern_order_test.js +++ b/jscomp/test/flattern_order_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/flexible_array_test.js b/jscomp/test/flexible_array_test.js index f0ca05e43d..3201263a66 100644 --- a/jscomp/test/flexible_array_test.js +++ b/jscomp/test/flexible_array_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/float_array.js b/jscomp/test/float_array.js index 58e8024caa..d859178ac5 100644 --- a/jscomp/test/float_array.js +++ b/jscomp/test/float_array.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/float_of_bits_test.js b/jscomp/test/float_of_bits_test.js index 5774ad62d2..7bc29010c2 100644 --- a/jscomp/test/float_of_bits_test.js +++ b/jscomp/test/float_of_bits_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/float_record.js b/jscomp/test/float_record.js index 08cc666d91..32f9d95d0f 100644 --- a/jscomp/test/float_record.js +++ b/jscomp/test/float_record.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/float_test.js b/jscomp/test/float_test.js index 8b213cdef6..ab342bdb89 100644 --- a/jscomp/test/float_test.js +++ b/jscomp/test/float_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/floatarray_test.js b/jscomp/test/floatarray_test.js index d318bf85b9..c8d86e139f 100644 --- a/jscomp/test/floatarray_test.js +++ b/jscomp/test/floatarray_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/for_loop_test.js b/jscomp/test/for_loop_test.js index 0988ca9aee..7571c529bb 100644 --- a/jscomp/test/for_loop_test.js +++ b/jscomp/test/for_loop_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/for_side_effect_test.js b/jscomp/test/for_side_effect_test.js index e5478d0a5d..c23e93c0cb 100644 --- a/jscomp/test/for_side_effect_test.js +++ b/jscomp/test/for_side_effect_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/format_regression.js b/jscomp/test/format_regression.js index 678ad185ab..d591f1cd78 100644 --- a/jscomp/test/format_regression.js +++ b/jscomp/test/format_regression.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/format_test.js b/jscomp/test/format_test.js index fbe81a2040..622709d918 100644 --- a/jscomp/test/format_test.js +++ b/jscomp/test/format_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/fs_test.js b/jscomp/test/fs_test.js index b11c82d41e..3a5f2c4546 100644 --- a/jscomp/test/fs_test.js +++ b/jscomp/test/fs_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/fun_pattern_match.js b/jscomp/test/fun_pattern_match.js index e291b7c4b3..ee24bdd38e 100644 --- a/jscomp/test/fun_pattern_match.js +++ b/jscomp/test/fun_pattern_match.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/functor_app_test.js b/jscomp/test/functor_app_test.js index 2786c97aa0..b3cb51dc08 100644 --- a/jscomp/test/functor_app_test.js +++ b/jscomp/test/functor_app_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/functor_def.js b/jscomp/test/functor_def.js index 6934043216..fb80c5df15 100644 --- a/jscomp/test/functor_def.js +++ b/jscomp/test/functor_def.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/functor_ffi.js b/jscomp/test/functor_ffi.js index 55f500b4cf..8c33a76f46 100644 --- a/jscomp/test/functor_ffi.js +++ b/jscomp/test/functor_ffi.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_option = require("../../lib/js/caml_option.js"); diff --git a/jscomp/test/functor_inst.js b/jscomp/test/functor_inst.js index 6feece6f75..9dcca2304c 100644 --- a/jscomp/test/functor_inst.js +++ b/jscomp/test/functor_inst.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/functors.js b/jscomp/test/functors.js index e0492d3947..c4d2a5fa77 100644 --- a/jscomp/test/functors.js +++ b/jscomp/test/functors.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/gbk.js b/jscomp/test/gbk.js index e46cf72a62..431b05718e 100644 --- a/jscomp/test/gbk.js +++ b/jscomp/test/gbk.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/genlex_test.js b/jscomp/test/genlex_test.js index 7bdc11389a..8809d35a3c 100644 --- a/jscomp/test/genlex_test.js +++ b/jscomp/test/genlex_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gentTypeReTest.js b/jscomp/test/gentTypeReTest.js index 074a6ecd6f..af4cc95e6b 100644 --- a/jscomp/test/gentTypeReTest.js +++ b/jscomp/test/gentTypeReTest.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var GentTypeReTestGen = require("./gentTypeReTest.gen"); diff --git a/jscomp/test/global_exception_regression_test.js b/jscomp/test/global_exception_regression_test.js index 653e5f22ac..b97e697256 100644 --- a/jscomp/test/global_exception_regression_test.js +++ b/jscomp/test/global_exception_regression_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/global_mangles.js b/jscomp/test/global_mangles.js index 90691d1eb6..1430b840df 100644 --- a/jscomp/test/global_mangles.js +++ b/jscomp/test/global_mangles.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/global_module_alias_test.js b/jscomp/test/global_module_alias_test.js index bca78b80e5..9595de9a20 100644 --- a/jscomp/test/global_module_alias_test.js +++ b/jscomp/test/global_module_alias_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/google_closure_test.js b/jscomp/test/google_closure_test.js index e539c8e39f..42dd98b667 100644 --- a/jscomp/test/google_closure_test.js +++ b/jscomp/test/google_closure_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr496_test.js b/jscomp/test/gpr496_test.js index dee590b84c..5931bf9895 100644 --- a/jscomp/test/gpr496_test.js +++ b/jscomp/test/gpr496_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1072.js b/jscomp/test/gpr_1072.js index bde8236b3d..ccf957102d 100644 --- a/jscomp/test/gpr_1072.js +++ b/jscomp/test/gpr_1072.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1072_reg.js b/jscomp/test/gpr_1072_reg.js index 412f400654..34098fdbab 100644 --- a/jscomp/test/gpr_1072_reg.js +++ b/jscomp/test/gpr_1072_reg.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1150.js b/jscomp/test/gpr_1150.js index 0451ca4c6f..034cd50364 100644 --- a/jscomp/test/gpr_1150.js +++ b/jscomp/test/gpr_1150.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1154_test.js b/jscomp/test/gpr_1154_test.js index d3e2906b6e..fb4ee3ec5b 100644 --- a/jscomp/test/gpr_1154_test.js +++ b/jscomp/test/gpr_1154_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1170.js b/jscomp/test/gpr_1170.js index 4eee61a779..17d775348e 100644 --- a/jscomp/test/gpr_1170.js +++ b/jscomp/test/gpr_1170.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1240_missing_unbox.js b/jscomp/test/gpr_1240_missing_unbox.js index 8d1ed95e53..241dcb3e7f 100644 --- a/jscomp/test/gpr_1240_missing_unbox.js +++ b/jscomp/test/gpr_1240_missing_unbox.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1245_test.js b/jscomp/test/gpr_1245_test.js index 6dfadab36b..79ff9d7815 100644 --- a/jscomp/test/gpr_1245_test.js +++ b/jscomp/test/gpr_1245_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/gpr_1268.js b/jscomp/test/gpr_1268.js index 5a5ad341b9..4ba2f859a1 100644 --- a/jscomp/test/gpr_1268.js +++ b/jscomp/test/gpr_1268.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/gpr_1409_test.js b/jscomp/test/gpr_1409_test.js index 626bbc82ee..b17cc36f98 100644 --- a/jscomp/test/gpr_1409_test.js +++ b/jscomp/test/gpr_1409_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1423_app_test.js b/jscomp/test/gpr_1423_app_test.js index 9c7fff1400..a152b159d4 100644 --- a/jscomp/test/gpr_1423_app_test.js +++ b/jscomp/test/gpr_1423_app_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1423_nav.js b/jscomp/test/gpr_1423_nav.js index 54f7582bed..0116b45024 100644 --- a/jscomp/test/gpr_1423_nav.js +++ b/jscomp/test/gpr_1423_nav.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1438.js b/jscomp/test/gpr_1438.js index 862153c097..6e286ffb3e 100644 --- a/jscomp/test/gpr_1438.js +++ b/jscomp/test/gpr_1438.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1481.js b/jscomp/test/gpr_1481.js index bab1641081..2e8a9ff782 100644 --- a/jscomp/test/gpr_1481.js +++ b/jscomp/test/gpr_1481.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Moduleid = require("#moduleid"); diff --git a/jscomp/test/gpr_1484.js b/jscomp/test/gpr_1484.js index 65738c7345..5e8a8743ba 100644 --- a/jscomp/test/gpr_1484.js +++ b/jscomp/test/gpr_1484.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1503_test.js b/jscomp/test/gpr_1503_test.js index 7e154234e4..160ee23a23 100644 --- a/jscomp/test/gpr_1503_test.js +++ b/jscomp/test/gpr_1503_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1539_test.js b/jscomp/test/gpr_1539_test.js index 924e8f2383..a0d64fd637 100644 --- a/jscomp/test/gpr_1539_test.js +++ b/jscomp/test/gpr_1539_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_module = require("../../lib/js/caml_module.js"); diff --git a/jscomp/test/gpr_1658_test.js b/jscomp/test/gpr_1658_test.js index 466f1470a2..b4d2747c9b 100644 --- a/jscomp/test/gpr_1658_test.js +++ b/jscomp/test/gpr_1658_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1667_test.js b/jscomp/test/gpr_1667_test.js index 6dab7cd2e1..b908253946 100644 --- a/jscomp/test/gpr_1667_test.js +++ b/jscomp/test/gpr_1667_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1692_test.js b/jscomp/test/gpr_1692_test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/gpr_1692_test.js +++ b/jscomp/test/gpr_1692_test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/gpr_1698_test.js b/jscomp/test/gpr_1698_test.js index 416f15419b..1d14c72e7e 100644 --- a/jscomp/test/gpr_1698_test.js +++ b/jscomp/test/gpr_1698_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1701_test.js b/jscomp/test/gpr_1701_test.js index 6f43c63bda..6e3e2048ce 100644 --- a/jscomp/test/gpr_1701_test.js +++ b/jscomp/test/gpr_1701_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/gpr_1716_test.js b/jscomp/test/gpr_1716_test.js index 85d8ed183f..4683a97cd3 100644 --- a/jscomp/test/gpr_1716_test.js +++ b/jscomp/test/gpr_1716_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1717_test.js b/jscomp/test/gpr_1717_test.js index e90c6eac21..830c967b22 100644 --- a/jscomp/test/gpr_1717_test.js +++ b/jscomp/test/gpr_1717_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_1728_test.js b/jscomp/test/gpr_1728_test.js index bdf150a3fe..6c9472edbd 100644 --- a/jscomp/test/gpr_1728_test.js +++ b/jscomp/test/gpr_1728_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1749_test.js b/jscomp/test/gpr_1749_test.js index 58c91f4e76..b75c25e9f9 100644 --- a/jscomp/test/gpr_1749_test.js +++ b/jscomp/test/gpr_1749_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1759_test.js b/jscomp/test/gpr_1759_test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/gpr_1759_test.js +++ b/jscomp/test/gpr_1759_test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/gpr_1760_test.js b/jscomp/test/gpr_1760_test.js index 39a7bc4ec6..8a701ac9f6 100644 --- a/jscomp/test/gpr_1760_test.js +++ b/jscomp/test/gpr_1760_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1762_test.js b/jscomp/test/gpr_1762_test.js index 626bdc0868..0fa11d2521 100644 --- a/jscomp/test/gpr_1762_test.js +++ b/jscomp/test/gpr_1762_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1817_test.js b/jscomp/test/gpr_1817_test.js index 73b8744be3..13a831129e 100644 --- a/jscomp/test/gpr_1817_test.js +++ b/jscomp/test/gpr_1817_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1822_test.js b/jscomp/test/gpr_1822_test.js index 7d27f5a565..6776e28a32 100644 --- a/jscomp/test/gpr_1822_test.js +++ b/jscomp/test/gpr_1822_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1891_test.js b/jscomp/test/gpr_1891_test.js index 92c3458ef4..bbaf49b1fd 100644 --- a/jscomp/test/gpr_1891_test.js +++ b/jscomp/test/gpr_1891_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/gpr_1943_test.js b/jscomp/test/gpr_1943_test.js index 31103af825..a981b27609 100644 --- a/jscomp/test/gpr_1943_test.js +++ b/jscomp/test/gpr_1943_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_1946_test.js b/jscomp/test/gpr_1946_test.js index e6f4bdfe04..0a577a27dd 100644 --- a/jscomp/test/gpr_1946_test.js +++ b/jscomp/test/gpr_1946_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_2316_test.js b/jscomp/test/gpr_2316_test.js index 23764dc6ad..ef8b728e78 100644 --- a/jscomp/test/gpr_2316_test.js +++ b/jscomp/test/gpr_2316_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_2352_test.js b/jscomp/test/gpr_2352_test.js index 9653f5c336..887a6902cf 100644 --- a/jscomp/test/gpr_2352_test.js +++ b/jscomp/test/gpr_2352_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_2413_test.js b/jscomp/test/gpr_2413_test.js index 41489fdf66..44fb314781 100644 --- a/jscomp/test/gpr_2413_test.js +++ b/jscomp/test/gpr_2413_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_2474.js b/jscomp/test/gpr_2474.js index c3e04f1a48..a375d93a9d 100644 --- a/jscomp/test/gpr_2474.js +++ b/jscomp/test/gpr_2474.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_2487.js b/jscomp/test/gpr_2487.js index f13d058ab3..6bf5991877 100644 --- a/jscomp/test/gpr_2487.js +++ b/jscomp/test/gpr_2487.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Belt_Array = require("../../lib/js/belt_Array.js"); diff --git a/jscomp/test/gpr_2503_test.js b/jscomp/test/gpr_2503_test.js index 6453224344..8b2be590ce 100644 --- a/jscomp/test/gpr_2503_test.js +++ b/jscomp/test/gpr_2503_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_2608_test.js b/jscomp/test/gpr_2608_test.js index 4e5cb411da..4a67676901 100644 --- a/jscomp/test/gpr_2608_test.js +++ b/jscomp/test/gpr_2608_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_2614_test.js b/jscomp/test/gpr_2614_test.js index 003b1dd64c..96bc52ad6b 100644 --- a/jscomp/test/gpr_2614_test.js +++ b/jscomp/test/gpr_2614_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_option = require("../../lib/js/caml_option.js"); diff --git a/jscomp/test/gpr_2633_test.js b/jscomp/test/gpr_2633_test.js index 124afd51ae..56b8b9e698 100644 --- a/jscomp/test/gpr_2633_test.js +++ b/jscomp/test/gpr_2633_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/gpr_2642_test.js b/jscomp/test/gpr_2642_test.js index 58c8a8df15..f6dd411f09 100644 --- a/jscomp/test/gpr_2642_test.js +++ b/jscomp/test/gpr_2642_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_2652_test.js b/jscomp/test/gpr_2652_test.js index 283605a0e5..32158bdc18 100644 --- a/jscomp/test/gpr_2652_test.js +++ b/jscomp/test/gpr_2652_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Buffer = require("../../lib/js/buffer.js"); diff --git a/jscomp/test/gpr_2682_test.js b/jscomp/test/gpr_2682_test.js index 0e4eefd5a3..2696a65731 100644 --- a/jscomp/test/gpr_2682_test.js +++ b/jscomp/test/gpr_2682_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_2700_test.js b/jscomp/test/gpr_2700_test.js index 886e951c8a..d30a948391 100644 --- a/jscomp/test/gpr_2700_test.js +++ b/jscomp/test/gpr_2700_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_2731_test.js b/jscomp/test/gpr_2731_test.js index ffa781834e..9dcd6a23ee 100644 --- a/jscomp/test/gpr_2731_test.js +++ b/jscomp/test/gpr_2731_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_2789_test.js b/jscomp/test/gpr_2789_test.js index a5120d4ffe..640465333a 100644 --- a/jscomp/test/gpr_2789_test.js +++ b/jscomp/test/gpr_2789_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_2931_test.js b/jscomp/test/gpr_2931_test.js index 5f7faa8be9..9c4bf21f84 100644 --- a/jscomp/test/gpr_2931_test.js +++ b/jscomp/test/gpr_2931_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_3142_test.js b/jscomp/test/gpr_3142_test.js index 783ef23143..f89745168b 100644 --- a/jscomp/test/gpr_3142_test.js +++ b/jscomp/test/gpr_3142_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_3154_test.js b/jscomp/test/gpr_3154_test.js index 59365720d0..640d60dacc 100644 --- a/jscomp/test/gpr_3154_test.js +++ b/jscomp/test/gpr_3154_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_3209_test.js b/jscomp/test/gpr_3209_test.js index fb766dbe8e..170f470e27 100644 --- a/jscomp/test/gpr_3209_test.js +++ b/jscomp/test/gpr_3209_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3492_test.js b/jscomp/test/gpr_3492_test.js index 3560a9cf4f..c1d9d84ad5 100644 --- a/jscomp/test/gpr_3492_test.js +++ b/jscomp/test/gpr_3492_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_3519_jsx_test.js b/jscomp/test/gpr_3519_jsx_test.js index 7843c893fc..dbda2720fa 100644 --- a/jscomp/test/gpr_3519_jsx_test.js +++ b/jscomp/test/gpr_3519_jsx_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3519_test.js b/jscomp/test/gpr_3519_test.js index ae7e80f60e..fb55a38838 100644 --- a/jscomp/test/gpr_3519_test.js +++ b/jscomp/test/gpr_3519_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3536_test.js b/jscomp/test/gpr_3536_test.js index 5466fd5a7b..15958cab58 100644 --- a/jscomp/test/gpr_3536_test.js +++ b/jscomp/test/gpr_3536_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_3546_test.js b/jscomp/test/gpr_3546_test.js index f78dec6184..5c8420e542 100644 --- a/jscomp/test/gpr_3546_test.js +++ b/jscomp/test/gpr_3546_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3548_test.js b/jscomp/test/gpr_3548_test.js index 18f49275e8..b8bc6e4139 100644 --- a/jscomp/test/gpr_3548_test.js +++ b/jscomp/test/gpr_3548_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3549_test.js b/jscomp/test/gpr_3549_test.js index 6a20366392..264e5121a3 100644 --- a/jscomp/test/gpr_3549_test.js +++ b/jscomp/test/gpr_3549_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_3566_drive_test.js b/jscomp/test/gpr_3566_drive_test.js index 7443330a1c..c04df355f8 100644 --- a/jscomp/test/gpr_3566_drive_test.js +++ b/jscomp/test/gpr_3566_drive_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_3566_test.js b/jscomp/test/gpr_3566_test.js index 2804a12e94..c771437632 100644 --- a/jscomp/test/gpr_3566_test.js +++ b/jscomp/test/gpr_3566_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/gpr_3595_test.js b/jscomp/test/gpr_3595_test.js index ed91da1dc1..c794191a10 100644 --- a/jscomp/test/gpr_3595_test.js +++ b/jscomp/test/gpr_3595_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_3609_test.js b/jscomp/test/gpr_3609_test.js index eb5ac991ac..b500d4101c 100644 --- a/jscomp/test/gpr_3609_test.js +++ b/jscomp/test/gpr_3609_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3697_test.js b/jscomp/test/gpr_3697_test.js index 57b0452783..e5990aecb7 100644 --- a/jscomp/test/gpr_3697_test.js +++ b/jscomp/test/gpr_3697_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var CamlinternalLazy = require("../../lib/js/camlinternalLazy.js"); diff --git a/jscomp/test/gpr_373_test.js b/jscomp/test/gpr_373_test.js index ff7a40ea13..f04dccc896 100644 --- a/jscomp/test/gpr_373_test.js +++ b/jscomp/test/gpr_373_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3770_test.js b/jscomp/test/gpr_3770_test.js index 7812d773f7..683fc487a9 100644 --- a/jscomp/test/gpr_3770_test.js +++ b/jscomp/test/gpr_3770_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3852_alias.js b/jscomp/test/gpr_3852_alias.js index a0ddc6fcb7..50f6cf1dc9 100644 --- a/jscomp/test/gpr_3852_alias.js +++ b/jscomp/test/gpr_3852_alias.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3852_alias_reify.js b/jscomp/test/gpr_3852_alias_reify.js index 3e2f2a0416..281b80429f 100644 --- a/jscomp/test/gpr_3852_alias_reify.js +++ b/jscomp/test/gpr_3852_alias_reify.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Gpr_3852_effect = require("./gpr_3852_effect.js"); diff --git a/jscomp/test/gpr_3852_effect.js b/jscomp/test/gpr_3852_effect.js index e21bf089d6..d16bef9900 100644 --- a/jscomp/test/gpr_3852_effect.js +++ b/jscomp/test/gpr_3852_effect.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3865.js b/jscomp/test/gpr_3865.js index d1c30f5c87..ae1f07a841 100644 --- a/jscomp/test/gpr_3865.js +++ b/jscomp/test/gpr_3865.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Gpr_3865_foo = require("./gpr_3865_foo.js"); diff --git a/jscomp/test/gpr_3865_bar.js b/jscomp/test/gpr_3865_bar.js index 0f199e0e3a..c36cc825e9 100644 --- a/jscomp/test/gpr_3865_bar.js +++ b/jscomp/test/gpr_3865_bar.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3865_foo.js b/jscomp/test/gpr_3865_foo.js index caef257fae..c99bc65b1f 100644 --- a/jscomp/test/gpr_3865_foo.js +++ b/jscomp/test/gpr_3865_foo.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3875_test.js b/jscomp/test/gpr_3875_test.js index fc3e22a90c..291db720ec 100644 --- a/jscomp/test/gpr_3875_test.js +++ b/jscomp/test/gpr_3875_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_3877_test.js b/jscomp/test/gpr_3877_test.js index 44f887259b..4311dc15eb 100644 --- a/jscomp/test/gpr_3877_test.js +++ b/jscomp/test/gpr_3877_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3895_test.js b/jscomp/test/gpr_3895_test.js index 69cbaf54b6..6e01e4091e 100644 --- a/jscomp/test/gpr_3895_test.js +++ b/jscomp/test/gpr_3895_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3897_test.js b/jscomp/test/gpr_3897_test.js index ae3130ca84..d5f7e2fcca 100644 --- a/jscomp/test/gpr_3897_test.js +++ b/jscomp/test/gpr_3897_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_3931_test.js b/jscomp/test/gpr_3931_test.js index 11c49c535b..627a566ff3 100644 --- a/jscomp/test/gpr_3931_test.js +++ b/jscomp/test/gpr_3931_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/gpr_3980_test.js b/jscomp/test/gpr_3980_test.js index a7aa75d79d..478fd21a59 100644 --- a/jscomp/test/gpr_3980_test.js +++ b/jscomp/test/gpr_3980_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Js_math = require("../../lib/js/js_math.js"); diff --git a/jscomp/test/gpr_4025_test.js b/jscomp/test/gpr_4025_test.js index 48eb4d9fec..c9192742eb 100644 --- a/jscomp/test/gpr_4025_test.js +++ b/jscomp/test/gpr_4025_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_405_test.js b/jscomp/test/gpr_405_test.js index da92ec16dc..3deb71c910 100644 --- a/jscomp/test/gpr_405_test.js +++ b/jscomp/test/gpr_405_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/gpr_4069_test.js b/jscomp/test/gpr_4069_test.js index 1a9de84b55..d9fdf4e7b9 100644 --- a/jscomp/test/gpr_4069_test.js +++ b/jscomp/test/gpr_4069_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/gpr_4265_test.js b/jscomp/test/gpr_4265_test.js index 3260c47281..b5e9236bb5 100644 --- a/jscomp/test/gpr_4265_test.js +++ b/jscomp/test/gpr_4265_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_4274_test.js b/jscomp/test/gpr_4274_test.js index cf2423f9cb..55ce7a2640 100644 --- a/jscomp/test/gpr_4274_test.js +++ b/jscomp/test/gpr_4274_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Belt_List = require("../../lib/js/belt_List.js"); diff --git a/jscomp/test/gpr_4280_test.js b/jscomp/test/gpr_4280_test.js index 6b9c559741..2feceec005 100644 --- a/jscomp/test/gpr_4280_test.js +++ b/jscomp/test/gpr_4280_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_4407_test.js b/jscomp/test/gpr_4407_test.js index 35be612242..746f29ae3f 100644 --- a/jscomp/test/gpr_4407_test.js +++ b/jscomp/test/gpr_4407_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_441.js b/jscomp/test/gpr_441.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/gpr_441.js +++ b/jscomp/test/gpr_441.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/gpr_4442_test.js b/jscomp/test/gpr_4442_test.js index b54e672505..746ca0e795 100644 --- a/jscomp/test/gpr_4442_test.js +++ b/jscomp/test/gpr_4442_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_4491_test.js b/jscomp/test/gpr_4491_test.js index 97736749bd..c36e8b60fd 100644 --- a/jscomp/test/gpr_4491_test.js +++ b/jscomp/test/gpr_4491_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_4494_test.js b/jscomp/test/gpr_4494_test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/gpr_4494_test.js +++ b/jscomp/test/gpr_4494_test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/gpr_4519_test.js b/jscomp/test/gpr_4519_test.js index 23f5dbb744..bebe7f0f41 100644 --- a/jscomp/test/gpr_4519_test.js +++ b/jscomp/test/gpr_4519_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_459_test.js b/jscomp/test/gpr_459_test.js index 572aafca22..24e1dd138d 100644 --- a/jscomp/test/gpr_459_test.js +++ b/jscomp/test/gpr_459_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_4632.js b/jscomp/test/gpr_4632.js index 457962e60e..47fbae78ca 100644 --- a/jscomp/test/gpr_4632.js +++ b/jscomp/test/gpr_4632.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_4639_test.js b/jscomp/test/gpr_4639_test.js index 11be1cfad9..410c13daeb 100644 --- a/jscomp/test/gpr_4639_test.js +++ b/jscomp/test/gpr_4639_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_4900_test.js b/jscomp/test/gpr_4900_test.js index c7bcb24252..4109122a0d 100644 --- a/jscomp/test/gpr_4900_test.js +++ b/jscomp/test/gpr_4900_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_4924_test.js b/jscomp/test/gpr_4924_test.js index 109722f037..dbae579e13 100644 --- a/jscomp/test/gpr_4924_test.js +++ b/jscomp/test/gpr_4924_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_4931.js b/jscomp/test/gpr_4931.js index d15fbf5180..3a4a16ec2b 100644 --- a/jscomp/test/gpr_4931.js +++ b/jscomp/test/gpr_4931.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_4931_allow.js b/jscomp/test/gpr_4931_allow.js index 43ea7248e4..b94afa842c 100644 --- a/jscomp/test/gpr_4931_allow.js +++ b/jscomp/test/gpr_4931_allow.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_4931_allow.mjs b/jscomp/test/gpr_4931_allow.mjs index 778618be57..52d3994474 100644 --- a/jscomp/test/gpr_4931_allow.mjs +++ b/jscomp/test/gpr_4931_allow.mjs @@ -1,4 +1,4 @@ - +// Generated by ReScript, PLEASE EDIT WITH CARE if(import.meta.hot) { diff --git a/jscomp/test/gpr_5071_test.js b/jscomp/test/gpr_5071_test.js index c9b5d3b3b3..1940728eca 100644 --- a/jscomp/test/gpr_5071_test.js +++ b/jscomp/test/gpr_5071_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_5169_test.js b/jscomp/test/gpr_5169_test.js index 7fef87b939..8afd1a3ebf 100644 --- a/jscomp/test/gpr_5169_test.js +++ b/jscomp/test/gpr_5169_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_5218_test.js b/jscomp/test/gpr_5218_test.js index 438af050dd..7b7a0949b7 100644 --- a/jscomp/test/gpr_5218_test.js +++ b/jscomp/test/gpr_5218_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_5280_optimize_test.js b/jscomp/test/gpr_5280_optimize_test.js index f986715f6a..b4e9c8b4d1 100644 --- a/jscomp/test/gpr_5280_optimize_test.js +++ b/jscomp/test/gpr_5280_optimize_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_5312.js b/jscomp/test/gpr_5312.js index 3315d8b462..cf3f2bd2b3 100644 --- a/jscomp/test/gpr_5312.js +++ b/jscomp/test/gpr_5312.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_5557.js b/jscomp/test/gpr_5557.js index 14fcdbe75f..e6abeb63e7 100644 --- a/jscomp/test/gpr_5557.js +++ b/jscomp/test/gpr_5557.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_5753.js b/jscomp/test/gpr_5753.js index beabaa708e..1c02f17ab4 100644 --- a/jscomp/test/gpr_5753.js +++ b/jscomp/test/gpr_5753.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_658.js b/jscomp/test/gpr_658.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/gpr_658.js +++ b/jscomp/test/gpr_658.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/gpr_858_test.js b/jscomp/test/gpr_858_test.js index 4625c66e95..84dbb9e305 100644 --- a/jscomp/test/gpr_858_test.js +++ b/jscomp/test/gpr_858_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gpr_858_unit2_test.js b/jscomp/test/gpr_858_unit2_test.js index cb052e48dd..3f5bf7873e 100644 --- a/jscomp/test/gpr_858_unit2_test.js +++ b/jscomp/test/gpr_858_unit2_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/gpr_904_test.js b/jscomp/test/gpr_904_test.js index f82ce6617c..9d9f558358 100644 --- a/jscomp/test/gpr_904_test.js +++ b/jscomp/test/gpr_904_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_974_test.js b/jscomp/test/gpr_974_test.js index 79d13bc187..43ed958571 100644 --- a/jscomp/test/gpr_974_test.js +++ b/jscomp/test/gpr_974_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_obj = require("../../lib/js/caml_obj.js"); diff --git a/jscomp/test/gpr_977_test.js b/jscomp/test/gpr_977_test.js index f958fac2d8..61038541ad 100644 --- a/jscomp/test/gpr_977_test.js +++ b/jscomp/test/gpr_977_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/gpr_return_type_unused_attribute.js b/jscomp/test/gpr_return_type_unused_attribute.js index 2084c6e53e..cf81aea1f9 100644 --- a/jscomp/test/gpr_return_type_unused_attribute.js +++ b/jscomp/test/gpr_return_type_unused_attribute.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/gray_code_test.js b/jscomp/test/gray_code_test.js index b2229fc2ab..dbfe89ad65 100644 --- a/jscomp/test/gray_code_test.js +++ b/jscomp/test/gray_code_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Bytes = require("../../lib/js/bytes.js"); diff --git a/jscomp/test/guide_for_ext.js b/jscomp/test/guide_for_ext.js index bc8c106901..66a6db9454 100644 --- a/jscomp/test/guide_for_ext.js +++ b/jscomp/test/guide_for_ext.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/hamming_test.js b/jscomp/test/hamming_test.js index 0435d896ef..6a42718478 100644 --- a/jscomp/test/hamming_test.js +++ b/jscomp/test/hamming_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/hash_collision_test.js b/jscomp/test/hash_collision_test.js index eb91cdac4a..5a6d61003d 100644 --- a/jscomp/test/hash_collision_test.js +++ b/jscomp/test/hash_collision_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/hash_sugar_desugar.js b/jscomp/test/hash_sugar_desugar.js index ec414abfd0..4cf64de412 100644 --- a/jscomp/test/hash_sugar_desugar.js +++ b/jscomp/test/hash_sugar_desugar.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/hash_test.js b/jscomp/test/hash_test.js index 25df1a8608..3695788d90 100644 --- a/jscomp/test/hash_test.js +++ b/jscomp/test/hash_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/hashtbl_test.js b/jscomp/test/hashtbl_test.js index 2b31fb4e4f..dd2a67101a 100644 --- a/jscomp/test/hashtbl_test.js +++ b/jscomp/test/hashtbl_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/hello.foo.js b/jscomp/test/hello.foo.js index 140f1a88a4..a9caeea8a9 100644 --- a/jscomp/test/hello.foo.js +++ b/jscomp/test/hello.foo.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/hello_res.js b/jscomp/test/hello_res.js index 5f3857d910..7c6cdc157b 100644 --- a/jscomp/test/hello_res.js +++ b/jscomp/test/hello_res.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/ignore_test.js b/jscomp/test/ignore_test.js index fd8841baaa..6b400bd6cc 100644 --- a/jscomp/test/ignore_test.js +++ b/jscomp/test/ignore_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/imm_map_bench.js b/jscomp/test/imm_map_bench.js index d641c29da0..a54dbd0ca9 100644 --- a/jscomp/test/imm_map_bench.js +++ b/jscomp/test/imm_map_bench.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Immutable = require("immutable"); diff --git a/jscomp/test/include_side_effect.js b/jscomp/test/include_side_effect.js index b248d0a2a0..c2d25e0970 100644 --- a/jscomp/test/include_side_effect.js +++ b/jscomp/test/include_side_effect.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Side_effect = require("./side_effect.js"); diff --git a/jscomp/test/include_side_effect_free.js b/jscomp/test/include_side_effect_free.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/include_side_effect_free.js +++ b/jscomp/test/include_side_effect_free.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/incomplete_toplevel_test.js b/jscomp/test/incomplete_toplevel_test.js index fd08c47e36..c8a4a699e9 100644 --- a/jscomp/test/incomplete_toplevel_test.js +++ b/jscomp/test/incomplete_toplevel_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/infer_type_test.js b/jscomp/test/infer_type_test.js index 237cf0d512..7a260247dc 100644 --- a/jscomp/test/infer_type_test.js +++ b/jscomp/test/infer_type_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/inline_const.js b/jscomp/test/inline_const.js index 203a5b96f6..46d7e7c213 100644 --- a/jscomp/test/inline_const.js +++ b/jscomp/test/inline_const.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/inline_const_test.js b/jscomp/test/inline_const_test.js index e8f2dd6a49..46d0bed3ef 100644 --- a/jscomp/test/inline_const_test.js +++ b/jscomp/test/inline_const_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/inline_edge_cases.js b/jscomp/test/inline_edge_cases.js index be799fa87c..7b16cfd866 100644 --- a/jscomp/test/inline_edge_cases.js +++ b/jscomp/test/inline_edge_cases.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/inline_map2_test.js b/jscomp/test/inline_map2_test.js index 22a1a559ec..9613eb9862 100644 --- a/jscomp/test/inline_map2_test.js +++ b/jscomp/test/inline_map2_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/inline_map_demo.js b/jscomp/test/inline_map_demo.js index e731598bc5..c973437e70 100644 --- a/jscomp/test/inline_map_demo.js +++ b/jscomp/test/inline_map_demo.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/inline_map_test.js b/jscomp/test/inline_map_test.js index 0f3abed040..2c55bcd7ad 100644 --- a/jscomp/test/inline_map_test.js +++ b/jscomp/test/inline_map_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/inline_record_test.js b/jscomp/test/inline_record_test.js index cf892b6c78..4cd3cf31b8 100644 --- a/jscomp/test/inline_record_test.js +++ b/jscomp/test/inline_record_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/inline_regression_test.js b/jscomp/test/inline_regression_test.js index 66440296af..79e5b6da68 100644 --- a/jscomp/test/inline_regression_test.js +++ b/jscomp/test/inline_regression_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/inline_string_test.js b/jscomp/test/inline_string_test.js index a561650c77..fa4faecbf0 100644 --- a/jscomp/test/inline_string_test.js +++ b/jscomp/test/inline_string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/inner_call.js b/jscomp/test/inner_call.js index eee23c77a0..27eb2e2b8d 100644 --- a/jscomp/test/inner_call.js +++ b/jscomp/test/inner_call.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Inner_define = require("./inner_define.js"); diff --git a/jscomp/test/inner_define.js b/jscomp/test/inner_define.js index 11643be6ce..503683b800 100644 --- a/jscomp/test/inner_define.js +++ b/jscomp/test/inner_define.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/inner_unused.js b/jscomp/test/inner_unused.js index 5ed29364cb..a76c319ac5 100644 --- a/jscomp/test/inner_unused.js +++ b/jscomp/test/inner_unused.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/installation_test.js b/jscomp/test/installation_test.js index 04efc48572..de7f502874 100644 --- a/jscomp/test/installation_test.js +++ b/jscomp/test/installation_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/int32_test.js b/jscomp/test/int32_test.js index 13490e333c..7d53b6e881 100644 --- a/jscomp/test/int32_test.js +++ b/jscomp/test/int32_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/int64_mul_div_test.js b/jscomp/test/int64_mul_div_test.js index f761b69fe6..cae2874951 100644 --- a/jscomp/test/int64_mul_div_test.js +++ b/jscomp/test/int64_mul_div_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/int64_string_bench.js b/jscomp/test/int64_string_bench.js index ff2e01d5b6..614bdc7f4e 100644 --- a/jscomp/test/int64_string_bench.js +++ b/jscomp/test/int64_string_bench.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Int64 = require("../../lib/js/int64.js"); diff --git a/jscomp/test/int64_string_test.js b/jscomp/test/int64_string_test.js index c70820d516..af2ed53ebd 100644 --- a/jscomp/test/int64_string_test.js +++ b/jscomp/test/int64_string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/int64_test.js b/jscomp/test/int64_test.js index 81109de0c8..38dae459a6 100644 --- a/jscomp/test/int64_test.js +++ b/jscomp/test/int64_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/int_hashtbl_test.js b/jscomp/test/int_hashtbl_test.js index d68238f8c4..387d8c48bf 100644 --- a/jscomp/test/int_hashtbl_test.js +++ b/jscomp/test/int_hashtbl_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/int_map.js b/jscomp/test/int_map.js index b563f70641..febe2b69ed 100644 --- a/jscomp/test/int_map.js +++ b/jscomp/test/int_map.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/int_overflow_test.js b/jscomp/test/int_overflow_test.js index cb6a29000b..cdf9770083 100644 --- a/jscomp/test/int_overflow_test.js +++ b/jscomp/test/int_overflow_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/int_poly_var.js b/jscomp/test/int_poly_var.js index 211aa2d534..80818b0842 100644 --- a/jscomp/test/int_poly_var.js +++ b/jscomp/test/int_poly_var.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/int_switch_test.js b/jscomp/test/int_switch_test.js index a829301674..a2b1c73545 100644 --- a/jscomp/test/int_switch_test.js +++ b/jscomp/test/int_switch_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/internal_unused_test.js b/jscomp/test/internal_unused_test.js index 72ed996233..9eb9f5af33 100644 --- a/jscomp/test/internal_unused_test.js +++ b/jscomp/test/internal_unused_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_exceptions = require("../../lib/js/caml_exceptions.js"); diff --git a/jscomp/test/io_test.js b/jscomp/test/io_test.js index 01d8f3bb32..58e4915e0a 100644 --- a/jscomp/test/io_test.js +++ b/jscomp/test/io_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/js_array_test.js b/jscomp/test/js_array_test.js index 71c54447b5..2cf826a0ff 100644 --- a/jscomp/test/js_array_test.js +++ b/jscomp/test/js_array_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_bool_test.js b/jscomp/test/js_bool_test.js index 99b0baa4da..38ac995ae2 100644 --- a/jscomp/test/js_bool_test.js +++ b/jscomp/test/js_bool_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_cast_test.js b/jscomp/test/js_cast_test.js index 3b965aebc0..16044bcad6 100644 --- a/jscomp/test/js_cast_test.js +++ b/jscomp/test/js_cast_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_date_test.js b/jscomp/test/js_date_test.js index 4fdbf7eb90..60245bb47c 100644 --- a/jscomp/test/js_date_test.js +++ b/jscomp/test/js_date_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_dict_test.js b/jscomp/test/js_dict_test.js index 172c2ada8c..e0a31cdfd2 100644 --- a/jscomp/test/js_dict_test.js +++ b/jscomp/test/js_dict_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_exception_catch_test.js b/jscomp/test/js_exception_catch_test.js index 80b2e1e5c8..59ecc6fea4 100644 --- a/jscomp/test/js_exception_catch_test.js +++ b/jscomp/test/js_exception_catch_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_float_test.js b/jscomp/test/js_float_test.js index ecf8a2c707..b2d4567cc9 100644 --- a/jscomp/test/js_float_test.js +++ b/jscomp/test/js_float_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_global_test.js b/jscomp/test/js_global_test.js index 86a255995e..d1374ee40d 100644 --- a/jscomp/test/js_global_test.js +++ b/jscomp/test/js_global_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_int_test.js b/jscomp/test/js_int_test.js index e6286e9a26..6c4766e687 100644 --- a/jscomp/test/js_int_test.js +++ b/jscomp/test/js_int_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_json_test.js b/jscomp/test/js_json_test.js index 597dbff509..4248f81147 100644 --- a/jscomp/test/js_json_test.js +++ b/jscomp/test/js_json_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_list_test.js b/jscomp/test/js_list_test.js index 956b1fc804..71ab15c520 100644 --- a/jscomp/test/js_list_test.js +++ b/jscomp/test/js_list_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_math_test.js b/jscomp/test/js_math_test.js index 9d35ca4163..4eb628c288 100644 --- a/jscomp/test/js_math_test.js +++ b/jscomp/test/js_math_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_null_test.js b/jscomp/test/js_null_test.js index 61914f17d0..7cf7afa641 100644 --- a/jscomp/test/js_null_test.js +++ b/jscomp/test/js_null_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_null_undefined_test.js b/jscomp/test/js_null_undefined_test.js index fe5cecd9ce..6be2c75510 100644 --- a/jscomp/test/js_null_undefined_test.js +++ b/jscomp/test/js_null_undefined_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_nullable_test.js b/jscomp/test/js_nullable_test.js index dc746e126b..10dca58c44 100644 --- a/jscomp/test/js_nullable_test.js +++ b/jscomp/test/js_nullable_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_obj_test.js b/jscomp/test/js_obj_test.js index a9eac9d311..b256d7fe73 100644 --- a/jscomp/test/js_obj_test.js +++ b/jscomp/test/js_obj_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_option_test.js b/jscomp/test/js_option_test.js index 9b381c118a..a5b1571e01 100644 --- a/jscomp/test/js_option_test.js +++ b/jscomp/test/js_option_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_re_test.js b/jscomp/test/js_re_test.js index cce807182a..95ee7ad060 100644 --- a/jscomp/test/js_re_test.js +++ b/jscomp/test/js_re_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_string_test.js b/jscomp/test/js_string_test.js index 3949d0c7ee..fd1d58dd42 100644 --- a/jscomp/test/js_string_test.js +++ b/jscomp/test/js_string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_typed_array_test.js b/jscomp/test/js_typed_array_test.js index cd5bfdcf45..43e6c36184 100644 --- a/jscomp/test/js_typed_array_test.js +++ b/jscomp/test/js_typed_array_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_undefined_test.js b/jscomp/test/js_undefined_test.js index da1d72d295..5e86518ff5 100644 --- a/jscomp/test/js_undefined_test.js +++ b/jscomp/test/js_undefined_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/js_val.js b/jscomp/test/js_val.js index b9b6a23d2a..c614a20532 100644 --- a/jscomp/test/js_val.js +++ b/jscomp/test/js_val.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var X = require("x"); diff --git a/jscomp/test/jsoo_400_test.js b/jscomp/test/jsoo_400_test.js index 0880ffa75f..24e1328720 100644 --- a/jscomp/test/jsoo_400_test.js +++ b/jscomp/test/jsoo_400_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/jsoo_485_test.js b/jscomp/test/jsoo_485_test.js index b4b1f87ab5..25e071fbce 100644 --- a/jscomp/test/jsoo_485_test.js +++ b/jscomp/test/jsoo_485_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/jsxv4_newtype.js b/jscomp/test/jsxv4_newtype.js index 6b1313f418..3889299378 100644 --- a/jscomp/test/jsxv4_newtype.js +++ b/jscomp/test/jsxv4_newtype.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/key_word_property.js b/jscomp/test/key_word_property.js index 07f86120be..37ac9af4d9 100644 --- a/jscomp/test/key_word_property.js +++ b/jscomp/test/key_word_property.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Vscode = require("vscode"); diff --git a/jscomp/test/key_word_property2.js b/jscomp/test/key_word_property2.js index 00ccbaa778..d15778400a 100644 --- a/jscomp/test/key_word_property2.js +++ b/jscomp/test/key_word_property2.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Export_keyword = require("./export_keyword.js"); diff --git a/jscomp/test/key_word_property_plus_test.js b/jscomp/test/key_word_property_plus_test.js index e96ce5244e..a4de6933cd 100644 --- a/jscomp/test/key_word_property_plus_test.js +++ b/jscomp/test/key_word_property_plus_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/label_uncurry.js b/jscomp/test/label_uncurry.js index 9d121d3a9e..36ca0167bf 100644 --- a/jscomp/test/label_uncurry.js +++ b/jscomp/test/label_uncurry.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_format = require("../../lib/js/caml_format.js"); diff --git a/jscomp/test/large_integer_pat.js b/jscomp/test/large_integer_pat.js index fb270917c1..7e03d302c4 100644 --- a/jscomp/test/large_integer_pat.js +++ b/jscomp/test/large_integer_pat.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/large_record_duplication_test.js b/jscomp/test/large_record_duplication_test.js index 3ddb8eda0d..f1942416e2 100644 --- a/jscomp/test/large_record_duplication_test.js +++ b/jscomp/test/large_record_duplication_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/largest_int_flow.js b/jscomp/test/largest_int_flow.js index 573b3bd83f..16104d4181 100644 --- a/jscomp/test/largest_int_flow.js +++ b/jscomp/test/largest_int_flow.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/lazy_demo.js b/jscomp/test/lazy_demo.js index 5a8e4893ef..9d5062f583 100644 --- a/jscomp/test/lazy_demo.js +++ b/jscomp/test/lazy_demo.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var CamlinternalLazy = require("../../lib/js/camlinternalLazy.js"); diff --git a/jscomp/test/lazy_test.js b/jscomp/test/lazy_test.js index 3ea9cfe607..02ff1e0d02 100644 --- a/jscomp/test/lazy_test.js +++ b/jscomp/test/lazy_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/lib_js_test.js b/jscomp/test/lib_js_test.js index 6e4b1fed40..fc58e1e714 100644 --- a/jscomp/test/lib_js_test.js +++ b/jscomp/test/lib_js_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/libarg_test.js b/jscomp/test/libarg_test.js index e0370003ea..090217494c 100644 --- a/jscomp/test/libarg_test.js +++ b/jscomp/test/libarg_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/libqueue_test.js b/jscomp/test/libqueue_test.js index 9556a53286..b0521195de 100644 --- a/jscomp/test/libqueue_test.js +++ b/jscomp/test/libqueue_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/limits_test.js b/jscomp/test/limits_test.js index a3c9df801f..03028f40aa 100644 --- a/jscomp/test/limits_test.js +++ b/jscomp/test/limits_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/list_stack.js b/jscomp/test/list_stack.js index 5a6aaf7b63..84fc2df05e 100644 --- a/jscomp/test/list_stack.js +++ b/jscomp/test/list_stack.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/list_test.js b/jscomp/test/list_test.js index d1c1da07b1..eda351f377 100644 --- a/jscomp/test/list_test.js +++ b/jscomp/test/list_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/local_exception_test.js b/jscomp/test/local_exception_test.js index ae132b2b0d..925c518fdc 100644 --- a/jscomp/test/local_exception_test.js +++ b/jscomp/test/local_exception_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_exceptions = require("../../lib/js/caml_exceptions.js"); diff --git a/jscomp/test/loop_regression_test.js b/jscomp/test/loop_regression_test.js index 226f6c6a1a..6bbb9e3a86 100644 --- a/jscomp/test/loop_regression_test.js +++ b/jscomp/test/loop_regression_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/loop_suites_test.js b/jscomp/test/loop_suites_test.js index d86a9b8bbf..b3d046c5e6 100644 --- a/jscomp/test/loop_suites_test.js +++ b/jscomp/test/loop_suites_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/map_find_test.js b/jscomp/test/map_find_test.js index eb1e1b756b..80f8f6f738 100644 --- a/jscomp/test/map_find_test.js +++ b/jscomp/test/map_find_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/map_test.js b/jscomp/test/map_test.js index 7e9fd04fe8..2673871e26 100644 --- a/jscomp/test/map_test.js +++ b/jscomp/test/map_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/mario_game.js b/jscomp/test/mario_game.js index 55e0fa3e32..31ae3eb138 100644 --- a/jscomp/test/mario_game.js +++ b/jscomp/test/mario_game.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/marshal.js b/jscomp/test/marshal.js index cc8c6b0210..358fadf11c 100644 --- a/jscomp/test/marshal.js +++ b/jscomp/test/marshal.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Bytes = require("../../lib/js/bytes.js"); diff --git a/jscomp/test/meth_annotation.js b/jscomp/test/meth_annotation.js index 79ce1edaae..3471959ac4 100644 --- a/jscomp/test/meth_annotation.js +++ b/jscomp/test/meth_annotation.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/method_name_test.js b/jscomp/test/method_name_test.js index 149ddc489c..67903c7b7d 100644 --- a/jscomp/test/method_name_test.js +++ b/jscomp/test/method_name_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/method_string_name.js b/jscomp/test/method_string_name.js index 99c5f33412..12d612f693 100644 --- a/jscomp/test/method_string_name.js +++ b/jscomp/test/method_string_name.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/minimal_test.js b/jscomp/test/minimal_test.js index 213cbbd9ea..b3b5967bb1 100644 --- a/jscomp/test/minimal_test.js +++ b/jscomp/test/minimal_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/miss_colon_test.js b/jscomp/test/miss_colon_test.js index b3e798119e..6e985e6f45 100644 --- a/jscomp/test/miss_colon_test.js +++ b/jscomp/test/miss_colon_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/mock_mt.js b/jscomp/test/mock_mt.js index 0174969524..29acadccfe 100644 --- a/jscomp/test/mock_mt.js +++ b/jscomp/test/mock_mt.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/module_alias_test.js b/jscomp/test/module_alias_test.js index ceaa7aa8c5..2764181380 100644 --- a/jscomp/test/module_alias_test.js +++ b/jscomp/test/module_alias_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/module_as_class_ffi.js b/jscomp/test/module_as_class_ffi.js index 34af2b2bf5..9452d53088 100644 --- a/jscomp/test/module_as_class_ffi.js +++ b/jscomp/test/module_as_class_ffi.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Foo_class = require("xx/foo_class"); diff --git a/jscomp/test/module_as_function.js b/jscomp/test/module_as_function.js index f642de0e38..2ec1288620 100644 --- a/jscomp/test/module_as_function.js +++ b/jscomp/test/module_as_function.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Nightmare = require("nightmare"); diff --git a/jscomp/test/module_missing_conversion.js b/jscomp/test/module_missing_conversion.js index bee471af3a..dfff882be9 100644 --- a/jscomp/test/module_missing_conversion.js +++ b/jscomp/test/module_missing_conversion.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/module_parameter_test.js b/jscomp/test/module_parameter_test.js index e79b737eee..38ad674b1c 100644 --- a/jscomp/test/module_parameter_test.js +++ b/jscomp/test/module_parameter_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/module_splice_test.js b/jscomp/test/module_splice_test.js index ba0e29c5da..d96e7d797a 100644 --- a/jscomp/test/module_splice_test.js +++ b/jscomp/test/module_splice_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/more_poly_variant_test.js b/jscomp/test/more_poly_variant_test.js index 3e0fc3fe36..6f66db6971 100644 --- a/jscomp/test/more_poly_variant_test.js +++ b/jscomp/test/more_poly_variant_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/more_uncurry.js b/jscomp/test/more_uncurry.js index 89d38348f3..a89f66de65 100644 --- a/jscomp/test/more_uncurry.js +++ b/jscomp/test/more_uncurry.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/mpr_6033_test.js b/jscomp/test/mpr_6033_test.js index 2a0389ff58..d6d1999965 100644 --- a/jscomp/test/mpr_6033_test.js +++ b/jscomp/test/mpr_6033_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/mt.js b/jscomp/test/mt.js index f84bee3c69..c71b21abe4 100644 --- a/jscomp/test/mt.js +++ b/jscomp/test/mt.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/mt_global.js b/jscomp/test/mt_global.js index d82ba2f5cc..9b21f8ad90 100644 --- a/jscomp/test/mt_global.js +++ b/jscomp/test/mt_global.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/mutable_obj_test.js b/jscomp/test/mutable_obj_test.js index 90eefa4fe4..cfba990f99 100644 --- a/jscomp/test/mutable_obj_test.js +++ b/jscomp/test/mutable_obj_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/mutable_uncurry_test.js b/jscomp/test/mutable_uncurry_test.js index 282aa3b547..b8d763355f 100644 --- a/jscomp/test/mutable_uncurry_test.js +++ b/jscomp/test/mutable_uncurry_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/mutual_non_recursive_type.js b/jscomp/test/mutual_non_recursive_type.js index 3c797680c7..e8d6f3d70c 100644 --- a/jscomp/test/mutual_non_recursive_type.js +++ b/jscomp/test/mutual_non_recursive_type.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/name_mangle_test.js b/jscomp/test/name_mangle_test.js index 241b283eb5..09330e2dc5 100644 --- a/jscomp/test/name_mangle_test.js +++ b/jscomp/test/name_mangle_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/nested_include.js b/jscomp/test/nested_include.js index 9539eb244f..2107e1e40b 100644 --- a/jscomp/test/nested_include.js +++ b/jscomp/test/nested_include.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/nested_module_alias.js b/jscomp/test/nested_module_alias.js index 0c74bf8b35..eaa04d2496 100644 --- a/jscomp/test/nested_module_alias.js +++ b/jscomp/test/nested_module_alias.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/nested_obj_literal.js b/jscomp/test/nested_obj_literal.js index f2cc9258e9..3549600cc9 100644 --- a/jscomp/test/nested_obj_literal.js +++ b/jscomp/test/nested_obj_literal.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/nested_obj_test.js b/jscomp/test/nested_obj_test.js index 57ea34d9b9..cbbee0c82f 100644 --- a/jscomp/test/nested_obj_test.js +++ b/jscomp/test/nested_obj_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/nested_pattern_match_test.js b/jscomp/test/nested_pattern_match_test.js index 73b981c72b..6f74ac7747 100644 --- a/jscomp/test/nested_pattern_match_test.js +++ b/jscomp/test/nested_pattern_match_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/noassert.js b/jscomp/test/noassert.js index 621ddc8d85..fb1c0f0c3d 100644 --- a/jscomp/test/noassert.js +++ b/jscomp/test/noassert.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/node_fs_test.js b/jscomp/test/node_fs_test.js index c28e68a78d..151a07f27c 100644 --- a/jscomp/test/node_fs_test.js +++ b/jscomp/test/node_fs_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Fs = require("fs"); diff --git a/jscomp/test/node_path_test.js b/jscomp/test/node_path_test.js index f7bc479918..a90d6ca929 100644 --- a/jscomp/test/node_path_test.js +++ b/jscomp/test/node_path_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Path = require("path"); diff --git a/jscomp/test/null_list_test.js b/jscomp/test/null_list_test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/null_list_test.js +++ b/jscomp/test/null_list_test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/number_lexer.js b/jscomp/test/number_lexer.js index 6a889df037..9482a28512 100644 --- a/jscomp/test/number_lexer.js +++ b/jscomp/test/number_lexer.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/obj_literal_ppx.js b/jscomp/test/obj_literal_ppx.js index 1204e5f712..0670cfd92d 100644 --- a/jscomp/test/obj_literal_ppx.js +++ b/jscomp/test/obj_literal_ppx.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/obj_literal_ppx_test.js b/jscomp/test/obj_literal_ppx_test.js index d350303c41..3006a3944a 100644 --- a/jscomp/test/obj_literal_ppx_test.js +++ b/jscomp/test/obj_literal_ppx_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/obj_magic_test.js b/jscomp/test/obj_magic_test.js index a9d223299b..d11f762e80 100644 --- a/jscomp/test/obj_magic_test.js +++ b/jscomp/test/obj_magic_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/obj_type_test.js b/jscomp/test/obj_type_test.js index c59c73788d..7cabf0ecd1 100644 --- a/jscomp/test/obj_type_test.js +++ b/jscomp/test/obj_type_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/ocaml_re_test.js b/jscomp/test/ocaml_re_test.js index 36fff280eb..fe9c3fc1b0 100644 --- a/jscomp/test/ocaml_re_test.js +++ b/jscomp/test/ocaml_re_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/of_string_test.js b/jscomp/test/of_string_test.js index dd3b737b71..a8cc4218c8 100644 --- a/jscomp/test/of_string_test.js +++ b/jscomp/test/of_string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/offset.js b/jscomp/test/offset.js index b3a7884756..694c817866 100644 --- a/jscomp/test/offset.js +++ b/jscomp/test/offset.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/option_encoding_test.js b/jscomp/test/option_encoding_test.js index 199bbcd199..20da98c46e 100644 --- a/jscomp/test/option_encoding_test.js +++ b/jscomp/test/option_encoding_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/option_record_none_test.js b/jscomp/test/option_record_none_test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/option_record_none_test.js +++ b/jscomp/test/option_record_none_test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/option_repr_test.js b/jscomp/test/option_repr_test.js index 7d1b2464b7..a9cf2b9eb8 100644 --- a/jscomp/test/option_repr_test.js +++ b/jscomp/test/option_repr_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/optional_ffi_test.js b/jscomp/test/optional_ffi_test.js index feae92204c..18ac19b294 100644 --- a/jscomp/test/optional_ffi_test.js +++ b/jscomp/test/optional_ffi_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/optional_regression_test.js b/jscomp/test/optional_regression_test.js index d9b3e85d65..fb5131a3f3 100644 --- a/jscomp/test/optional_regression_test.js +++ b/jscomp/test/optional_regression_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/pipe_send_readline.js b/jscomp/test/pipe_send_readline.js index d62fffd68e..1186d0a36f 100644 --- a/jscomp/test/pipe_send_readline.js +++ b/jscomp/test/pipe_send_readline.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/pipe_syntax.js b/jscomp/test/pipe_syntax.js index b98f2d5769..86f6cc5418 100644 --- a/jscomp/test/pipe_syntax.js +++ b/jscomp/test/pipe_syntax.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/poly_empty_array.js b/jscomp/test/poly_empty_array.js index 165cfb30e5..684dd92c5b 100644 --- a/jscomp/test/poly_empty_array.js +++ b/jscomp/test/poly_empty_array.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/poly_variant_test.js b/jscomp/test/poly_variant_test.js index 5dc9b5fcd9..33f79cf8ae 100644 --- a/jscomp/test/poly_variant_test.js +++ b/jscomp/test/poly_variant_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/polymorphic_raw_test.js b/jscomp/test/polymorphic_raw_test.js index 5b600903d1..aa029a4e35 100644 --- a/jscomp/test/polymorphic_raw_test.js +++ b/jscomp/test/polymorphic_raw_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/polymorphism_test.js b/jscomp/test/polymorphism_test.js index 735860cfea..8fde5552b2 100644 --- a/jscomp/test/polymorphism_test.js +++ b/jscomp/test/polymorphism_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/polyvar_convert.js b/jscomp/test/polyvar_convert.js index c9fa355630..2ea6162f01 100644 --- a/jscomp/test/polyvar_convert.js +++ b/jscomp/test/polyvar_convert.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/polyvar_test.js b/jscomp/test/polyvar_test.js index 3869261639..ed1cae51fd 100644 --- a/jscomp/test/polyvar_test.js +++ b/jscomp/test/polyvar_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/ppx_apply_test.js b/jscomp/test/ppx_apply_test.js index 72ae69fa66..6111a80de5 100644 --- a/jscomp/test/ppx_apply_test.js +++ b/jscomp/test/ppx_apply_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/pq_test.js b/jscomp/test/pq_test.js index 4f901b73e0..3fb5083b0b 100644 --- a/jscomp/test/pq_test.js +++ b/jscomp/test/pq_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_exceptions = require("../../lib/js/caml_exceptions.js"); diff --git a/jscomp/test/pr6726.js b/jscomp/test/pr6726.js index dce44ddab2..852f7390e0 100644 --- a/jscomp/test/pr6726.js +++ b/jscomp/test/pr6726.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/pr_regression_test.js b/jscomp/test/pr_regression_test.js index 0b5d708bf5..08eb2e71c0 100644 --- a/jscomp/test/pr_regression_test.js +++ b/jscomp/test/pr_regression_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/prepend_data_ffi.js b/jscomp/test/prepend_data_ffi.js index 106181761d..dafe61356b 100644 --- a/jscomp/test/prepend_data_ffi.js +++ b/jscomp/test/prepend_data_ffi.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/primitive_reg_test.js b/jscomp/test/primitive_reg_test.js index 6e234926fd..c66f7c6acc 100644 --- a/jscomp/test/primitive_reg_test.js +++ b/jscomp/test/primitive_reg_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/print_alpha_test.js b/jscomp/test/print_alpha_test.js index 0cd1602104..0979e727d0 100644 --- a/jscomp/test/print_alpha_test.js +++ b/jscomp/test/print_alpha_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/queue_402.js b/jscomp/test/queue_402.js index a591db6116..cbcd9205fa 100644 --- a/jscomp/test/queue_402.js +++ b/jscomp/test/queue_402.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/queue_test.js b/jscomp/test/queue_test.js index acfdd893c9..4630a7cb83 100644 --- a/jscomp/test/queue_test.js +++ b/jscomp/test/queue_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/random_test.js b/jscomp/test/random_test.js index bfbc62f9d4..d0f146b030 100644 --- a/jscomp/test/random_test.js +++ b/jscomp/test/random_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/raw_hash_tbl_bench.js b/jscomp/test/raw_hash_tbl_bench.js index 26dd817acd..b3872389b4 100644 --- a/jscomp/test/raw_hash_tbl_bench.js +++ b/jscomp/test/raw_hash_tbl_bench.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Hashtbl = require("../../lib/js/hashtbl.js"); diff --git a/jscomp/test/raw_output_test.js b/jscomp/test/raw_output_test.js index fb3b4abf3c..3facdda2aa 100644 --- a/jscomp/test/raw_output_test.js +++ b/jscomp/test/raw_output_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/raw_pure_test.js b/jscomp/test/raw_pure_test.js index 88ea19ab6d..23f53d8346 100644 --- a/jscomp/test/raw_pure_test.js +++ b/jscomp/test/raw_pure_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /** * copyright */ diff --git a/jscomp/test/rbset.js b/jscomp/test/rbset.js index a72dbd8833..dc5cbd7aeb 100644 --- a/jscomp/test/rbset.js +++ b/jscomp/test/rbset.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/react.js b/jscomp/test/react.js index 53ba9dc341..88fd49d834 100644 --- a/jscomp/test/react.js +++ b/jscomp/test/react.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/reactDOMRe.js b/jscomp/test/reactDOMRe.js index e2878ede6f..a9c0ad6f79 100644 --- a/jscomp/test/reactDOMRe.js +++ b/jscomp/test/reactDOMRe.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var React = require("react"); diff --git a/jscomp/test/reactDOMServerRe.js b/jscomp/test/reactDOMServerRe.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/reactDOMServerRe.js +++ b/jscomp/test/reactDOMServerRe.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/reactEvent.js b/jscomp/test/reactEvent.js index 551d6dfab7..91d374a8ea 100644 --- a/jscomp/test/reactEvent.js +++ b/jscomp/test/reactEvent.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/reactTestUtils.js b/jscomp/test/reactTestUtils.js index 4ce3c32b85..e17fd624af 100644 --- a/jscomp/test/reactTestUtils.js +++ b/jscomp/test/reactTestUtils.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/reasonReact.js b/jscomp/test/reasonReact.js index d684496b25..6bb5965723 100644 --- a/jscomp/test/reasonReact.js +++ b/jscomp/test/reasonReact.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/reasonReactCompat.js b/jscomp/test/reasonReactCompat.js index d7e305b0a4..f95760ff7d 100644 --- a/jscomp/test/reasonReactCompat.js +++ b/jscomp/test/reasonReactCompat.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var ReasonReact = require("./reasonReact.js"); diff --git a/jscomp/test/reasonReactOptimizedCreateClass.js b/jscomp/test/reasonReactOptimizedCreateClass.js index 6c60c3fc17..22bc3fa930 100644 --- a/jscomp/test/reasonReactOptimizedCreateClass.js +++ b/jscomp/test/reasonReactOptimizedCreateClass.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var React = require("react"); diff --git a/jscomp/test/reasonReactRouter.js b/jscomp/test/reasonReactRouter.js index d22f0cf2f8..c8f193aa8f 100644 --- a/jscomp/test/reasonReactRouter.js +++ b/jscomp/test/reasonReactRouter.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/rebind_module.js b/jscomp/test/rebind_module.js index 2d874d4266..2337c913aa 100644 --- a/jscomp/test/rebind_module.js +++ b/jscomp/test/rebind_module.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_exceptions = require("../../lib/js/caml_exceptions.js"); diff --git a/jscomp/test/rebind_module_test.js b/jscomp/test/rebind_module_test.js index 3eee018ce7..71f1f9554c 100644 --- a/jscomp/test/rebind_module_test.js +++ b/jscomp/test/rebind_module_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Rebind_module = require("./rebind_module.js"); diff --git a/jscomp/test/rec_array_test.js b/jscomp/test/rec_array_test.js index bffd63cbd3..6c4c9833c4 100644 --- a/jscomp/test/rec_array_test.js +++ b/jscomp/test/rec_array_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_obj = require("../../lib/js/caml_obj.js"); diff --git a/jscomp/test/rec_fun_test.js b/jscomp/test/rec_fun_test.js index c1ca31546a..5333ec8b7e 100644 --- a/jscomp/test/rec_fun_test.js +++ b/jscomp/test/rec_fun_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/rec_module_opt.js b/jscomp/test/rec_module_opt.js index 801de97b7c..6b5d737136 100644 --- a/jscomp/test/rec_module_opt.js +++ b/jscomp/test/rec_module_opt.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Set = require("../../lib/js/set.js"); diff --git a/jscomp/test/rec_module_test.js b/jscomp/test/rec_module_test.js index 8ed6c0b347..71a0304801 100644 --- a/jscomp/test/rec_module_test.js +++ b/jscomp/test/rec_module_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/record_debug_test.js b/jscomp/test/record_debug_test.js index 2dc9a64fb3..3c191e796e 100644 --- a/jscomp/test/record_debug_test.js +++ b/jscomp/test/record_debug_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/record_extension_test.js b/jscomp/test/record_extension_test.js index 58fba4230c..0a800c95aa 100644 --- a/jscomp/test/record_extension_test.js +++ b/jscomp/test/record_extension_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/record_name_test.js b/jscomp/test/record_name_test.js index 9a1fabecb1..7b193c0208 100644 --- a/jscomp/test/record_name_test.js +++ b/jscomp/test/record_name_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/record_regression.js b/jscomp/test/record_regression.js index 2441d8aeb6..a409a3a88d 100644 --- a/jscomp/test/record_regression.js +++ b/jscomp/test/record_regression.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_obj = require("../../lib/js/caml_obj.js"); diff --git a/jscomp/test/record_with_test.js b/jscomp/test/record_with_test.js index a6f3cdedb9..e1b315c7ec 100644 --- a/jscomp/test/record_with_test.js +++ b/jscomp/test/record_with_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/recursive_module.js b/jscomp/test/recursive_module.js index d1579cd8e7..439491cec3 100644 --- a/jscomp/test/recursive_module.js +++ b/jscomp/test/recursive_module.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/recursive_module_test.js b/jscomp/test/recursive_module_test.js index bd4724015c..4d412483f1 100644 --- a/jscomp/test/recursive_module_test.js +++ b/jscomp/test/recursive_module_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/recursive_react_component.js b/jscomp/test/recursive_react_component.js index 510ba11dcc..b389e4231d 100644 --- a/jscomp/test/recursive_react_component.js +++ b/jscomp/test/recursive_react_component.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var React = require("react"); diff --git a/jscomp/test/recursive_records_test.js b/jscomp/test/recursive_records_test.js index c92f3d9bc0..ca0328c656 100644 --- a/jscomp/test/recursive_records_test.js +++ b/jscomp/test/recursive_records_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/recursive_unbound_module_test.js b/jscomp/test/recursive_unbound_module_test.js index f500903140..f651e96b35 100644 --- a/jscomp/test/recursive_unbound_module_test.js +++ b/jscomp/test/recursive_unbound_module_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_module = require("../../lib/js/caml_module.js"); diff --git a/jscomp/test/regression_print.js b/jscomp/test/regression_print.js index e11de77240..f174166c84 100644 --- a/jscomp/test/regression_print.js +++ b/jscomp/test/regression_print.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/relative_path.js b/jscomp/test/relative_path.js index a9f429db30..aee00122b1 100644 --- a/jscomp/test/relative_path.js +++ b/jscomp/test/relative_path.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var FileJs = require("./File.js"); diff --git a/jscomp/test/res_debug.js b/jscomp/test/res_debug.js index af0d0fa941..f826b71df4 100644 --- a/jscomp/test/res_debug.js +++ b/jscomp/test/res_debug.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/return_check.js b/jscomp/test/return_check.js index 9c4ea59e60..961218c89d 100644 --- a/jscomp/test/return_check.js +++ b/jscomp/test/return_check.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_option = require("../../lib/js/caml_option.js"); diff --git a/jscomp/test/runtime_encoding_test.js b/jscomp/test/runtime_encoding_test.js index 47832876e3..e957e5f1e4 100644 --- a/jscomp/test/runtime_encoding_test.js +++ b/jscomp/test/runtime_encoding_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/set_annotation.js b/jscomp/test/set_annotation.js index 69f750dc64..7d936683e1 100644 --- a/jscomp/test/set_annotation.js +++ b/jscomp/test/set_annotation.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var MyJSFile = require("MyJSFile"); diff --git a/jscomp/test/set_gen.js b/jscomp/test/set_gen.js index 2cf47c61c8..470740414b 100644 --- a/jscomp/test/set_gen.js +++ b/jscomp/test/set_gen.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/sexp.js b/jscomp/test/sexp.js index 300b9563b8..29bf3a1c53 100644 --- a/jscomp/test/sexp.js +++ b/jscomp/test/sexp.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/sexpm.js b/jscomp/test/sexpm.js index 5249b2026a..de38992dbb 100644 --- a/jscomp/test/sexpm.js +++ b/jscomp/test/sexpm.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Sys = require("../../lib/js/sys.js"); diff --git a/jscomp/test/sexpm_test.js b/jscomp/test/sexpm_test.js index 00eff5887a..a5880b80d8 100644 --- a/jscomp/test/sexpm_test.js +++ b/jscomp/test/sexpm_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/side_effect.js b/jscomp/test/side_effect.js index 89097faf70..8db15a2f23 100644 --- a/jscomp/test/side_effect.js +++ b/jscomp/test/side_effect.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/side_effect_free.js b/jscomp/test/side_effect_free.js index 27644188ff..bd93031700 100644 --- a/jscomp/test/side_effect_free.js +++ b/jscomp/test/side_effect_free.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/simple_derive_test.js b/jscomp/test/simple_derive_test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/simple_derive_test.js +++ b/jscomp/test/simple_derive_test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/simple_derive_use.js b/jscomp/test/simple_derive_use.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/simple_derive_use.js +++ b/jscomp/test/simple_derive_use.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/simplify_lambda_632o.js b/jscomp/test/simplify_lambda_632o.js index a4158c142f..4324b08b2c 100644 --- a/jscomp/test/simplify_lambda_632o.js +++ b/jscomp/test/simplify_lambda_632o.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/single_module_alias.js b/jscomp/test/single_module_alias.js index facdc86bfb..efadc24570 100644 --- a/jscomp/test/single_module_alias.js +++ b/jscomp/test/single_module_alias.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/singular_unit_test.js b/jscomp/test/singular_unit_test.js index 77831bbc36..639c2d4900 100644 --- a/jscomp/test/singular_unit_test.js +++ b/jscomp/test/singular_unit_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/small_inline_test.js b/jscomp/test/small_inline_test.js index 8951cbfb6a..830841e616 100644 --- a/jscomp/test/small_inline_test.js +++ b/jscomp/test/small_inline_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/splice_test.js b/jscomp/test/splice_test.js index aa0310e5c1..c702357898 100644 --- a/jscomp/test/splice_test.js +++ b/jscomp/test/splice_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/stack_comp_test.js b/jscomp/test/stack_comp_test.js index 02baaed930..65dadf2497 100644 --- a/jscomp/test/stack_comp_test.js +++ b/jscomp/test/stack_comp_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/stack_test.js b/jscomp/test/stack_test.js index 5270bf6c5f..9c3e68f93d 100644 --- a/jscomp/test/stack_test.js +++ b/jscomp/test/stack_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/stream_parser_test.js b/jscomp/test/stream_parser_test.js index 866bda8a6c..5069483368 100644 --- a/jscomp/test/stream_parser_test.js +++ b/jscomp/test/stream_parser_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/string_bound_get_test.js b/jscomp/test/string_bound_get_test.js index c3943f7d2d..6e5079da5a 100644 --- a/jscomp/test/string_bound_get_test.js +++ b/jscomp/test/string_bound_get_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_bytes = require("../../lib/js/caml_bytes.js"); diff --git a/jscomp/test/string_constant_compare.js b/jscomp/test/string_constant_compare.js index dcf8a8c125..453349df93 100644 --- a/jscomp/test/string_constant_compare.js +++ b/jscomp/test/string_constant_compare.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/string_get_set_test.js b/jscomp/test/string_get_set_test.js index a10eecbe1d..e3c044a9c7 100644 --- a/jscomp/test/string_get_set_test.js +++ b/jscomp/test/string_get_set_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/string_runtime_test.js b/jscomp/test/string_runtime_test.js index 176b6910e7..e6f5944f2a 100644 --- a/jscomp/test/string_runtime_test.js +++ b/jscomp/test/string_runtime_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/string_set.js b/jscomp/test/string_set.js index 9fb703e624..dd33e53c0b 100644 --- a/jscomp/test/string_set.js +++ b/jscomp/test/string_set.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/string_set_test.js b/jscomp/test/string_set_test.js index 6cef62b90e..724e4e1c28 100644 --- a/jscomp/test/string_set_test.js +++ b/jscomp/test/string_set_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/string_test.js b/jscomp/test/string_test.js index f5f50c2dc1..a759643507 100644 --- a/jscomp/test/string_test.js +++ b/jscomp/test/string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/string_unicode_test.js b/jscomp/test/string_unicode_test.js index ff026641fa..112e0cd738 100644 --- a/jscomp/test/string_unicode_test.js +++ b/jscomp/test/string_unicode_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/stringmatch_test.js b/jscomp/test/stringmatch_test.js index 0ef0f41990..becccea56e 100644 --- a/jscomp/test/stringmatch_test.js +++ b/jscomp/test/stringmatch_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/submodule.js b/jscomp/test/submodule.js index 9b931aa9de..bc7b49d0d1 100644 --- a/jscomp/test/submodule.js +++ b/jscomp/test/submodule.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/submodule_call.js b/jscomp/test/submodule_call.js index 29f96ffa67..331d3eb4db 100644 --- a/jscomp/test/submodule_call.js +++ b/jscomp/test/submodule_call.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/switch_case_test.js b/jscomp/test/switch_case_test.js index 4800cf1907..230d6f7240 100644 --- a/jscomp/test/switch_case_test.js +++ b/jscomp/test/switch_case_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/switch_string.js b/jscomp/test/switch_string.js index add3ba7b9c..41ef9145c6 100644 --- a/jscomp/test/switch_string.js +++ b/jscomp/test/switch_string.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/tailcall_inline_test.js b/jscomp/test/tailcall_inline_test.js index 0868895f9f..f1d7923e50 100644 --- a/jscomp/test/tailcall_inline_test.js +++ b/jscomp/test/tailcall_inline_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/template.js b/jscomp/test/template.js index ce28a40b3d..16c848d197 100644 --- a/jscomp/test/template.js +++ b/jscomp/test/template.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test.js b/jscomp/test/test.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/test.js +++ b/jscomp/test/test.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/test2.js b/jscomp/test/test2.js index 4bf4cba7f7..7a06ae7a97 100644 --- a/jscomp/test/test2.js +++ b/jscomp/test/test2.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_alias.js b/jscomp/test/test_alias.js index aa33147a89..2f62e8be9e 100644 --- a/jscomp/test/test_alias.js +++ b/jscomp/test/test_alias.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_ari.js b/jscomp/test/test_ari.js index ccedbcb33c..123c7b70d1 100644 --- a/jscomp/test/test_ari.js +++ b/jscomp/test/test_ari.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var U = require("U"); diff --git a/jscomp/test/test_array.js b/jscomp/test/test_array.js index aa3b59f8b3..2d020e45f9 100644 --- a/jscomp/test/test_array.js +++ b/jscomp/test/test_array.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/test_array_append.js b/jscomp/test/test_array_append.js index fbd67ef563..32b5953310 100644 --- a/jscomp/test/test_array_append.js +++ b/jscomp/test/test_array_append.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/test_array_primitive.js b/jscomp/test/test_array_primitive.js index ff1c0deff1..ac0913d312 100644 --- a/jscomp/test/test_array_primitive.js +++ b/jscomp/test/test_array_primitive.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_array = require("../../lib/js/caml_array.js"); diff --git a/jscomp/test/test_bool_equal.js b/jscomp/test/test_bool_equal.js index f624bc141e..cc6a99be6c 100644 --- a/jscomp/test/test_bool_equal.js +++ b/jscomp/test/test_bool_equal.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_bs_this.js b/jscomp/test/test_bs_this.js index 9f3e6edac0..e699bfe499 100644 --- a/jscomp/test/test_bs_this.js +++ b/jscomp/test/test_bs_this.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_bug.js b/jscomp/test/test_bug.js index 51aa8f9675..57ff83d48d 100644 --- a/jscomp/test/test_bug.js +++ b/jscomp/test/test_bug.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Bytes = require("../../lib/js/bytes.js"); diff --git a/jscomp/test/test_bytes.js b/jscomp/test/test_bytes.js index cfc4ec89e9..ce36538d67 100644 --- a/jscomp/test/test_bytes.js +++ b/jscomp/test/test_bytes.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Bytes = require("../../lib/js/bytes.js"); diff --git a/jscomp/test/test_case_opt_collision.js b/jscomp/test/test_case_opt_collision.js index 1f288a624e..294ddcb886 100644 --- a/jscomp/test/test_case_opt_collision.js +++ b/jscomp/test/test_case_opt_collision.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/test_case_set.js b/jscomp/test/test_case_set.js index 6daa71eeed..829ae402b1 100644 --- a/jscomp/test/test_case_set.js +++ b/jscomp/test/test_case_set.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_char.js b/jscomp/test/test_char.js index 05c061c1d2..636c789c1d 100644 --- a/jscomp/test/test_char.js +++ b/jscomp/test/test_char.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_closure.js b/jscomp/test/test_closure.js index c30a0b0159..0665a00d5c 100644 --- a/jscomp/test/test_closure.js +++ b/jscomp/test/test_closure.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/test_common.js b/jscomp/test/test_common.js index 03ab81179e..fcb9fceb1e 100644 --- a/jscomp/test/test_common.js +++ b/jscomp/test/test_common.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_exceptions = require("../../lib/js/caml_exceptions.js"); diff --git a/jscomp/test/test_const_elim.js b/jscomp/test/test_const_elim.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/test_const_elim.js +++ b/jscomp/test/test_const_elim.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/test_const_propogate.js b/jscomp/test/test_const_propogate.js index 9539eb244f..2107e1e40b 100644 --- a/jscomp/test/test_const_propogate.js +++ b/jscomp/test/test_const_propogate.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_cpp.js b/jscomp/test/test_cpp.js index 36b3e0ac97..73262846f9 100644 --- a/jscomp/test/test_cpp.js +++ b/jscomp/test/test_cpp.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/test_cps.js b/jscomp/test/test_cps.js index 0f24ce6985..d5b7fd5ecd 100644 --- a/jscomp/test/test_cps.js +++ b/jscomp/test/test_cps.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_demo.js b/jscomp/test/test_demo.js index 939e2f6350..ab0151cbfa 100644 --- a/jscomp/test/test_demo.js +++ b/jscomp/test/test_demo.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_dup_param.js b/jscomp/test/test_dup_param.js index d482079a15..9930299529 100644 --- a/jscomp/test/test_dup_param.js +++ b/jscomp/test/test_dup_param.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_eq.js b/jscomp/test/test_eq.js index d2f2e4028f..4ce016ec7b 100644 --- a/jscomp/test/test_eq.js +++ b/jscomp/test/test_eq.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_exception.js b/jscomp/test/test_exception.js index 8eb5013ea7..106d3e9d36 100644 --- a/jscomp/test/test_exception.js +++ b/jscomp/test/test_exception.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Test_common = require("./test_common.js"); diff --git a/jscomp/test/test_exception_escape.js b/jscomp/test/test_exception_escape.js index f3c2f4b9d5..23d380f7d7 100644 --- a/jscomp/test/test_exception_escape.js +++ b/jscomp/test/test_exception_escape.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_exceptions = require("../../lib/js/caml_exceptions.js"); diff --git a/jscomp/test/test_export2.js b/jscomp/test/test_export2.js index 302c74a03a..b40a0f34f4 100644 --- a/jscomp/test/test_export2.js +++ b/jscomp/test/test_export2.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_external.js b/jscomp/test/test_external.js index 29814aca53..ff64767ed3 100644 --- a/jscomp/test/test_external.js +++ b/jscomp/test/test_external.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_external_unit.js b/jscomp/test/test_external_unit.js index 7c3b8d9f6d..14120ebf58 100644 --- a/jscomp/test/test_external_unit.js +++ b/jscomp/test/test_external_unit.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_ffi.js b/jscomp/test/test_ffi.js index 502d143ffe..e063b040a4 100644 --- a/jscomp/test/test_ffi.js +++ b/jscomp/test/test_ffi.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_fib.js b/jscomp/test/test_fib.js index 48da2dc27a..9bf0ba6e48 100644 --- a/jscomp/test/test_fib.js +++ b/jscomp/test/test_fib.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_filename.js b/jscomp/test/test_filename.js index 5ffee8f0ff..01cffabd96 100644 --- a/jscomp/test/test_filename.js +++ b/jscomp/test/test_filename.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_for_loop.js b/jscomp/test/test_for_loop.js index 03bc54dbf9..b870467f46 100644 --- a/jscomp/test/test_for_loop.js +++ b/jscomp/test/test_for_loop.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/test_for_map.js b/jscomp/test/test_for_map.js index 094f35ed0f..de4474f45f 100644 --- a/jscomp/test/test_for_map.js +++ b/jscomp/test/test_for_map.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/test_for_map2.js b/jscomp/test/test_for_map2.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/test_for_map2.js +++ b/jscomp/test/test_for_map2.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/test_format.js b/jscomp/test/test_format.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/test_format.js +++ b/jscomp/test/test_format.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/test_formatter.js b/jscomp/test/test_formatter.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/test_formatter.js +++ b/jscomp/test/test_formatter.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/test_functor_dead_code.js b/jscomp/test/test_functor_dead_code.js index b97f694c50..ed299476ec 100644 --- a/jscomp/test/test_functor_dead_code.js +++ b/jscomp/test/test_functor_dead_code.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_generative_module.js b/jscomp/test/test_generative_module.js index af26e343c3..e48fb05855 100644 --- a/jscomp/test/test_generative_module.js +++ b/jscomp/test/test_generative_module.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_global_print.js b/jscomp/test/test_global_print.js index 8129ac4c94..8aa92d7de3 100644 --- a/jscomp/test/test_global_print.js +++ b/jscomp/test/test_global_print.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_google_closure.js b/jscomp/test/test_google_closure.js index 4ea1e35c9f..3fa12e30da 100644 --- a/jscomp/test/test_google_closure.js +++ b/jscomp/test/test_google_closure.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/test_include.js b/jscomp/test/test_include.js index e8a3975838..65938e3dcf 100644 --- a/jscomp/test/test_include.js +++ b/jscomp/test/test_include.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_incomplete.js b/jscomp/test/test_incomplete.js index fc5612661a..d9a2d21459 100644 --- a/jscomp/test/test_incomplete.js +++ b/jscomp/test/test_incomplete.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_incr_ref.js b/jscomp/test/test_incr_ref.js index 694bb7372c..b0e40db379 100644 --- a/jscomp/test/test_incr_ref.js +++ b/jscomp/test/test_incr_ref.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_int_map_find.js b/jscomp/test/test_int_map_find.js index 2ff25cea4f..b8e9b38eb2 100644 --- a/jscomp/test/test_int_map_find.js +++ b/jscomp/test/test_int_map_find.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/test_internalOO.js b/jscomp/test/test_internalOO.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/test_internalOO.js +++ b/jscomp/test/test_internalOO.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/test_is_js.js b/jscomp/test/test_is_js.js index d77f510d95..19bec0536f 100644 --- a/jscomp/test/test_is_js.js +++ b/jscomp/test/test_is_js.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/test_js_ffi.js b/jscomp/test/test_js_ffi.js index 9b9a50a513..290254de54 100644 --- a/jscomp/test/test_js_ffi.js +++ b/jscomp/test/test_js_ffi.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$String = require("../../lib/js/string.js"); diff --git a/jscomp/test/test_let.js b/jscomp/test/test_let.js index 8b6abd656c..364420ba74 100644 --- a/jscomp/test/test_let.js +++ b/jscomp/test/test_let.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_list.js b/jscomp/test/test_list.js index d986ed1e8d..9ce963aaf7 100644 --- a/jscomp/test/test_list.js +++ b/jscomp/test/test_list.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_literal.js b/jscomp/test/test_literal.js index 118d837e42..ba37619bfa 100644 --- a/jscomp/test/test_literal.js +++ b/jscomp/test/test_literal.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_exceptions = require("../../lib/js/caml_exceptions.js"); diff --git a/jscomp/test/test_literals.js b/jscomp/test/test_literals.js index dc57a43dae..0c9081d2bb 100644 --- a/jscomp/test/test_literals.js +++ b/jscomp/test/test_literals.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_match_exception.js b/jscomp/test/test_match_exception.js index d65cfd159f..bade3d290b 100644 --- a/jscomp/test/test_match_exception.js +++ b/jscomp/test/test_match_exception.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_mutliple.js b/jscomp/test/test_mutliple.js index e6f37bbd59..1d1fe0a839 100644 --- a/jscomp/test/test_mutliple.js +++ b/jscomp/test/test_mutliple.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_nat64.js b/jscomp/test/test_nat64.js index cc55dc69b5..7bab9703ae 100644 --- a/jscomp/test/test_nat64.js +++ b/jscomp/test/test_nat64.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_int64 = require("../../lib/js/caml_int64.js"); diff --git a/jscomp/test/test_nested_let.js b/jscomp/test/test_nested_let.js index 8d930e451a..57cec0c95a 100644 --- a/jscomp/test/test_nested_let.js +++ b/jscomp/test/test_nested_let.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_nested_print.js b/jscomp/test/test_nested_print.js index 5f12fe6ea3..fe3e1aa6c7 100644 --- a/jscomp/test/test_nested_print.js +++ b/jscomp/test/test_nested_print.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_non_export.js b/jscomp/test/test_non_export.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/test_non_export.js +++ b/jscomp/test/test_non_export.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/test_nullary.js b/jscomp/test/test_nullary.js index 9677261f5d..286a047190 100644 --- a/jscomp/test/test_nullary.js +++ b/jscomp/test/test_nullary.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_obj.js b/jscomp/test/test_obj.js index 68b688fb61..e34804b1aa 100644 --- a/jscomp/test/test_obj.js +++ b/jscomp/test/test_obj.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_order.js b/jscomp/test/test_order.js index fd90ef9748..78fd323c8e 100644 --- a/jscomp/test/test_order.js +++ b/jscomp/test/test_order.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/test_order_tailcall.js b/jscomp/test/test_order_tailcall.js index d4eef5404c..93bc5b29c8 100644 --- a/jscomp/test/test_order_tailcall.js +++ b/jscomp/test/test_order_tailcall.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_other_exn.js b/jscomp/test/test_other_exn.js index bacb39b55d..3fce1d9e02 100644 --- a/jscomp/test/test_other_exn.js +++ b/jscomp/test/test_other_exn.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_pack.js b/jscomp/test/test_pack.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/test_pack.js +++ b/jscomp/test/test_pack.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/test_per.js b/jscomp/test/test_per.js index f61936126f..4bffdb0292 100644 --- a/jscomp/test/test_per.js +++ b/jscomp/test/test_per.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_pervasive.js b/jscomp/test/test_pervasive.js index 77c9a0c0e9..128440f3db 100644 --- a/jscomp/test/test_pervasive.js +++ b/jscomp/test/test_pervasive.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_pervasives2.js b/jscomp/test/test_pervasives2.js index 3b31b134b7..f12c45a171 100644 --- a/jscomp/test/test_pervasives2.js +++ b/jscomp/test/test_pervasives2.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_pervasives3.js b/jscomp/test/test_pervasives3.js index 814548d41e..c85f0668ad 100644 --- a/jscomp/test/test_pervasives3.js +++ b/jscomp/test/test_pervasives3.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_primitive.js b/jscomp/test/test_primitive.js index 0566bb3970..a66ce82af3 100644 --- a/jscomp/test/test_primitive.js +++ b/jscomp/test/test_primitive.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_ramification.js b/jscomp/test/test_ramification.js index 20b101b449..3550639525 100644 --- a/jscomp/test/test_ramification.js +++ b/jscomp/test/test_ramification.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_react.js b/jscomp/test/test_react.js index 2b2212e925..ffc39f072f 100644 --- a/jscomp/test/test_react.js +++ b/jscomp/test/test_react.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var C = require("c"); diff --git a/jscomp/test/test_react_case.js b/jscomp/test/test_react_case.js index 9bad784d2a..182b8c2015 100644 --- a/jscomp/test/test_react_case.js +++ b/jscomp/test/test_react_case.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_regex.js b/jscomp/test/test_regex.js index 9ee0a1cdd5..7a48b54970 100644 --- a/jscomp/test/test_regex.js +++ b/jscomp/test/test_regex.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_require.js b/jscomp/test/test_require.js index 03c1799424..9017013009 100644 --- a/jscomp/test/test_require.js +++ b/jscomp/test/test_require.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_runtime_encoding.js b/jscomp/test/test_runtime_encoding.js index 145329f322..bbc132b4b3 100644 --- a/jscomp/test/test_runtime_encoding.js +++ b/jscomp/test/test_runtime_encoding.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_array = require("../../lib/js/caml_array.js"); diff --git a/jscomp/test/test_scope.js b/jscomp/test/test_scope.js index ccc43f02a8..31ebe6e482 100644 --- a/jscomp/test/test_scope.js +++ b/jscomp/test/test_scope.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_seq.js b/jscomp/test/test_seq.js index c070808cd9..2c9252d100 100644 --- a/jscomp/test/test_seq.js +++ b/jscomp/test/test_seq.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_set.js b/jscomp/test/test_set.js index 6b586dae37..3a494d2114 100644 --- a/jscomp/test/test_set.js +++ b/jscomp/test/test_set.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/jscomp/test/test_side_effect_functor.js b/jscomp/test/test_side_effect_functor.js index 22b25aa2a6..89d7147567 100644 --- a/jscomp/test/test_side_effect_functor.js +++ b/jscomp/test/test_side_effect_functor.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_simple_include.js b/jscomp/test/test_simple_include.js index dcdcf4f494..41d1457803 100644 --- a/jscomp/test/test_simple_include.js +++ b/jscomp/test/test_simple_include.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/test_simple_pattern_match.js b/jscomp/test/test_simple_pattern_match.js index 62e08d0150..f6a8ad345f 100644 --- a/jscomp/test/test_simple_pattern_match.js +++ b/jscomp/test/test_simple_pattern_match.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Sys = require("../../lib/js/sys.js"); diff --git a/jscomp/test/test_simple_ref.js b/jscomp/test/test_simple_ref.js index 488e0b08ee..82aacb5321 100644 --- a/jscomp/test/test_simple_ref.js +++ b/jscomp/test/test_simple_ref.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_simple_tailcall.js b/jscomp/test/test_simple_tailcall.js index 2b61098a9f..2733ac18b2 100644 --- a/jscomp/test/test_simple_tailcall.js +++ b/jscomp/test/test_simple_tailcall.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_small.js b/jscomp/test/test_small.js index dcc32056e9..b833b6f535 100644 --- a/jscomp/test/test_small.js +++ b/jscomp/test/test_small.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_sprintf.js b/jscomp/test/test_sprintf.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/test_sprintf.js +++ b/jscomp/test/test_sprintf.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/test_stack.js b/jscomp/test/test_stack.js index 4125dc0877..4c31d7845d 100644 --- a/jscomp/test/test_stack.js +++ b/jscomp/test/test_stack.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_static_catch_ident.js b/jscomp/test/test_static_catch_ident.js index b9b2ad114f..6e9819d858 100644 --- a/jscomp/test/test_static_catch_ident.js +++ b/jscomp/test/test_static_catch_ident.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_exceptions = require("../../lib/js/caml_exceptions.js"); diff --git a/jscomp/test/test_string.js b/jscomp/test/test_string.js index 23552b82fa..301f0341f1 100644 --- a/jscomp/test/test_string.js +++ b/jscomp/test/test_string.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_bytes = require("../../lib/js/caml_bytes.js"); diff --git a/jscomp/test/test_string_case.js b/jscomp/test/test_string_case.js index c48a48bfdf..617b1d1260 100644 --- a/jscomp/test/test_string_case.js +++ b/jscomp/test/test_string_case.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_string_const.js b/jscomp/test/test_string_const.js index d67b26b5ff..78cce05d5c 100644 --- a/jscomp/test/test_string_const.js +++ b/jscomp/test/test_string_const.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_string = require("../../lib/js/caml_string.js"); diff --git a/jscomp/test/test_string_map.js b/jscomp/test/test_string_map.js index 91ed2a5069..a65c9416a0 100644 --- a/jscomp/test/test_string_map.js +++ b/jscomp/test/test_string_map.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/test_string_switch.js b/jscomp/test/test_string_switch.js index d5e97aade7..be516c2436 100644 --- a/jscomp/test/test_string_switch.js +++ b/jscomp/test/test_string_switch.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Sys = require("../../lib/js/sys.js"); diff --git a/jscomp/test/test_switch.js b/jscomp/test/test_switch.js index 5f589f3c60..5c53c83900 100644 --- a/jscomp/test/test_switch.js +++ b/jscomp/test/test_switch.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_trywith.js b/jscomp/test/test_trywith.js index 86f0ca7cd0..efba275edf 100644 --- a/jscomp/test/test_trywith.js +++ b/jscomp/test/test_trywith.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_tuple.js b/jscomp/test/test_tuple.js index 69f2d74af6..eb571fceb1 100644 --- a/jscomp/test/test_tuple.js +++ b/jscomp/test/test_tuple.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_tuple_destructring.js b/jscomp/test/test_tuple_destructring.js index 317418c2e2..9f31f9f654 100644 --- a/jscomp/test/test_tuple_destructring.js +++ b/jscomp/test/test_tuple_destructring.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_type_based_arity.js b/jscomp/test/test_type_based_arity.js index d86e0f5264..5446551baa 100644 --- a/jscomp/test/test_type_based_arity.js +++ b/jscomp/test/test_type_based_arity.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/test_u.js b/jscomp/test/test_u.js index 9b28138da6..e0205adbe5 100644 --- a/jscomp/test/test_u.js +++ b/jscomp/test/test_u.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_unknown.js b/jscomp/test/test_unknown.js index b6c61ecc9a..3b5276cdda 100644 --- a/jscomp/test/test_unknown.js +++ b/jscomp/test/test_unknown.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_option = require("../../lib/js/caml_option.js"); diff --git a/jscomp/test/test_unsafe_cmp.js b/jscomp/test/test_unsafe_cmp.js index 7f3557b07b..790a2922f1 100644 --- a/jscomp/test/test_unsafe_cmp.js +++ b/jscomp/test/test_unsafe_cmp.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_unsafe_obj_ffi.js b/jscomp/test/test_unsafe_obj_ffi.js index 681f15e162..2f4592cb5b 100644 --- a/jscomp/test/test_unsafe_obj_ffi.js +++ b/jscomp/test/test_unsafe_obj_ffi.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_unsafe_obj_ffi_ppx.js b/jscomp/test/test_unsafe_obj_ffi_ppx.js index ce4564faa3..fab000080c 100644 --- a/jscomp/test/test_unsafe_obj_ffi_ppx.js +++ b/jscomp/test/test_unsafe_obj_ffi_ppx.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_unsupported_primitive.js b/jscomp/test/test_unsupported_primitive.js index 6da31570a0..a6d27287b5 100644 --- a/jscomp/test/test_unsupported_primitive.js +++ b/jscomp/test/test_unsupported_primitive.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml_external_polyfill = require("../../lib/js/caml_external_polyfill.js"); diff --git a/jscomp/test/test_while_closure.js b/jscomp/test/test_while_closure.js index c6ac7f2ada..6a3ee2d576 100644 --- a/jscomp/test/test_while_closure.js +++ b/jscomp/test/test_while_closure.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var $$Array = require("../../lib/js/array.js"); diff --git a/jscomp/test/test_while_side_effect.js b/jscomp/test/test_while_side_effect.js index 8e1d440dc5..2539827f96 100644 --- a/jscomp/test/test_while_side_effect.js +++ b/jscomp/test/test_while_side_effect.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/test_zero_nullable.js b/jscomp/test/test_zero_nullable.js index 1a17ff10c9..8feee60e84 100644 --- a/jscomp/test/test_zero_nullable.js +++ b/jscomp/test/test_zero_nullable.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/then_mangle_test.js b/jscomp/test/then_mangle_test.js index d51fb4c27b..3a80c8ee0f 100644 --- a/jscomp/test/then_mangle_test.js +++ b/jscomp/test/then_mangle_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/ticker.js b/jscomp/test/ticker.js index 2b44ef530b..21a4416886 100644 --- a/jscomp/test/ticker.js +++ b/jscomp/test/ticker.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/to_string_test.js b/jscomp/test/to_string_test.js index b6592c779d..4bdfdba5d3 100644 --- a/jscomp/test/to_string_test.js +++ b/jscomp/test/to_string_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/topsort_test.js b/jscomp/test/topsort_test.js index f2e44d18e3..8dd76da64f 100644 --- a/jscomp/test/topsort_test.js +++ b/jscomp/test/topsort_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Caml = require("../../lib/js/caml.js"); diff --git a/jscomp/test/tramp_fib.js b/jscomp/test/tramp_fib.js index 38d763a4db..c1ac8e7852 100644 --- a/jscomp/test/tramp_fib.js +++ b/jscomp/test/tramp_fib.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/tuple_alloc.js b/jscomp/test/tuple_alloc.js index 9d99e92815..da5ac777a8 100644 --- a/jscomp/test/tuple_alloc.js +++ b/jscomp/test/tuple_alloc.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/type_disambiguate.js b/jscomp/test/type_disambiguate.js index ce9767d080..430222f987 100644 --- a/jscomp/test/type_disambiguate.js +++ b/jscomp/test/type_disambiguate.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/typeof_test.js b/jscomp/test/typeof_test.js index 2a9808d982..44dcf4b821 100644 --- a/jscomp/test/typeof_test.js +++ b/jscomp/test/typeof_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/unboxed_attribute.js b/jscomp/test/unboxed_attribute.js index 7eafd1f721..6f17c3a17e 100644 --- a/jscomp/test/unboxed_attribute.js +++ b/jscomp/test/unboxed_attribute.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/unboxed_attribute_test.js b/jscomp/test/unboxed_attribute_test.js index 90a27d7c61..3e25b6f289 100644 --- a/jscomp/test/unboxed_attribute_test.js +++ b/jscomp/test/unboxed_attribute_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/unboxed_crash.js b/jscomp/test/unboxed_crash.js index 8325c6d740..59df909bab 100644 --- a/jscomp/test/unboxed_crash.js +++ b/jscomp/test/unboxed_crash.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/unboxed_use_case.js b/jscomp/test/unboxed_use_case.js index 56ad82c6e7..1be44ce0da 100644 --- a/jscomp/test/unboxed_use_case.js +++ b/jscomp/test/unboxed_use_case.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/uncurried_cast.js b/jscomp/test/uncurried_cast.js index 5010bdf468..0e633f6d80 100644 --- a/jscomp/test/uncurried_cast.js +++ b/jscomp/test/uncurried_cast.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/uncurried_default.args.js b/jscomp/test/uncurried_default.args.js index 26c653e14b..7ece8cb8ec 100644 --- a/jscomp/test/uncurried_default.args.js +++ b/jscomp/test/uncurried_default.args.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/uncurried_pipe.js b/jscomp/test/uncurried_pipe.js index 486c57243d..99620a8220 100644 --- a/jscomp/test/uncurried_pipe.js +++ b/jscomp/test/uncurried_pipe.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/uncurry_external_test.js b/jscomp/test/uncurry_external_test.js index 80ef2f710f..7c8ecf39eb 100644 --- a/jscomp/test/uncurry_external_test.js +++ b/jscomp/test/uncurry_external_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/uncurry_glob_test.js b/jscomp/test/uncurry_glob_test.js index 71ef0457c4..0c9c40a825 100644 --- a/jscomp/test/uncurry_glob_test.js +++ b/jscomp/test/uncurry_glob_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/uncurry_test.js b/jscomp/test/uncurry_test.js index edc614b88d..cbce7ce877 100644 --- a/jscomp/test/uncurry_test.js +++ b/jscomp/test/uncurry_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/undef_regression2_test.js b/jscomp/test/undef_regression2_test.js index a1ce55066d..4339df8862 100644 --- a/jscomp/test/undef_regression2_test.js +++ b/jscomp/test/undef_regression2_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/undef_regression_test.js b/jscomp/test/undef_regression_test.js index b79b7016c9..35ece56c42 100644 --- a/jscomp/test/undef_regression_test.js +++ b/jscomp/test/undef_regression_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/undefine_conditional.js b/jscomp/test/undefine_conditional.js index 7daa98e98e..1124e51ff1 100644 --- a/jscomp/test/undefine_conditional.js +++ b/jscomp/test/undefine_conditional.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/unicode_type_error.js b/jscomp/test/unicode_type_error.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/unicode_type_error.js +++ b/jscomp/test/unicode_type_error.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/unit_undefined_test.js b/jscomp/test/unit_undefined_test.js index a2605b656f..2d336c22a1 100644 --- a/jscomp/test/unit_undefined_test.js +++ b/jscomp/test/unit_undefined_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/unitest_string.js b/jscomp/test/unitest_string.js index ae1b9f17e6..d856702bfe 100644 --- a/jscomp/test/unitest_string.js +++ b/jscomp/test/unitest_string.js @@ -1 +1,2 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */ diff --git a/jscomp/test/unsafe_full_apply_primitive.js b/jscomp/test/unsafe_full_apply_primitive.js index 0522d7a660..49880f31f9 100644 --- a/jscomp/test/unsafe_full_apply_primitive.js +++ b/jscomp/test/unsafe_full_apply_primitive.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/unsafe_ppx_test.js b/jscomp/test/unsafe_ppx_test.js index 77cfa2a598..e3ec3bd1c0 100644 --- a/jscomp/test/unsafe_ppx_test.js +++ b/jscomp/test/unsafe_ppx_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/update_record_test.js b/jscomp/test/update_record_test.js index 146e9e24f5..d02cbf8854 100644 --- a/jscomp/test/update_record_test.js +++ b/jscomp/test/update_record_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Mt = require("./mt.js"); diff --git a/jscomp/test/variant.js b/jscomp/test/variant.js index 555fa2df2b..dfdf63037a 100644 --- a/jscomp/test/variant.js +++ b/jscomp/test/variant.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Curry = require("../../lib/js/curry.js"); diff --git a/jscomp/test/variantsMatching.js b/jscomp/test/variantsMatching.js index 08883fc123..859d348f0e 100644 --- a/jscomp/test/variantsMatching.js +++ b/jscomp/test/variantsMatching.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; diff --git a/jscomp/test/watch_test.js b/jscomp/test/watch_test.js index 1cc8426d00..48277b6683 100644 --- a/jscomp/test/watch_test.js +++ b/jscomp/test/watch_test.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var Fs = require("fs"); diff --git a/jscomp/test/webpack_config.js b/jscomp/test/webpack_config.js index 11a2992248..eea17ea71c 100644 --- a/jscomp/test/webpack_config.js +++ b/jscomp/test/webpack_config.js @@ -1,3 +1,4 @@ +// Generated by ReScript, PLEASE EDIT WITH CARE 'use strict'; var List = require("../../lib/js/list.js"); diff --git a/scripts/ninja.js b/scripts/ninja.js index 656d3a9bd0..8a3a488c03 100755 --- a/scripts/ninja.js +++ b/scripts/ninja.js @@ -1197,7 +1197,7 @@ async function testNinja() { var ninjaOutput = "build.ninja"; var ninjaCwd = `test`; var templateTestRules = ` -bsc_flags = -bs-no-version-header -bs-cross-module-opt -make-runtime-test -bs-package-output commonjs:jscomp/test -w -3-6-26-27-29-30-32..40-44-45-52-60-9-106+104 -warn-error A -I runtime -I $stdlib -I others +bsc_flags = -bs-cross-module-opt -make-runtime-test -bs-package-output commonjs:jscomp/test -w -3-6-26-27-29-30-32..40-44-45-52-60-9-106+104 -warn-error A -I runtime -I $stdlib -I others ${ruleCC(ninjaCwd)}