diff --git a/jj.js b/jj.js deleted file mode 100644 index e961a4bd4d0d55..00000000000000 --- a/jj.js +++ /dev/null @@ -1,2 +0,0 @@ -require("fs").writeFileSync("awa2", "meowy", { flag: "a" }); -require("fs").writeFileSync("awa2", "meowy", { flag: "a" }); diff --git a/test/bundler/native_plugin.cc b/test/bundler/native_plugin.cc index 6063d0eafe55d2..707d28fd66fd85 100644 --- a/test/bundler/native_plugin.cc +++ b/test/bundler/native_plugin.cc @@ -101,7 +101,6 @@ plugin_impl_with_needle(const OnBeforeParseArguments *args, int fetch_result = result->fetchSourceCode(args, result); if (fetch_result != 0) { - printf("FUCK\n"); exit(1); } @@ -124,7 +123,6 @@ plugin_impl_with_needle(const OnBeforeParseArguments *args, if (needle_count > 0) { char *new_source = (char *)malloc(result->source_len); if (new_source == nullptr) { - printf("FUCK\n"); exit(1); } memcpy(new_source, result->source_ptr, result->source_len); @@ -148,7 +146,6 @@ plugin_impl_with_needle(const OnBeforeParseArguments *args, } else if (strcmp(needle, "baz") == 0) { needle_atomic_value = &external->baz_count; } - printf("FUCK: %d %s\n", needle_count, needle); needle_atomic_value->fetch_add(needle_count); free_counter = &external->compilation_ctx_freed_count; }