chore: remove accidentally-committed files (#16582)

This commit is contained in:
Don Isaac
2025-01-21 15:34:41 -08:00
committed by GitHub
parent e44e25ed26
commit 2cf247a855
2 changed files with 0 additions and 5 deletions

2
jj.js
View File

@@ -1,2 +0,0 @@
require("fs").writeFileSync("awa2", "meowy", { flag: "a" });
require("fs").writeFileSync("awa2", "meowy", { flag: "a" });

View File

@@ -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;
}