Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove accidentally-committed files #16582

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions jj.js

This file was deleted.

3 changes: 0 additions & 3 deletions test/bundler/native_plugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand All @@ -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);
Expand All @@ -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;
}
Expand Down
Loading