Skip to content

Commit

Permalink
chore: remove accidentally-committed files (#16582)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonIsaac authored Jan 21, 2025
1 parent e44e25e commit 2cf247a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
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

5 comments on commit 2cf247a

@xorraxraxret
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FUCK

@lf32
Copy link

@lf32 lf32 commented on 2cf247a Jan 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😆

@sizuadi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lmao xD

@AltairInglorious
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just updated to this commit, thx for fix

@xorraxraxret
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you write tests for this fix please?

Please sign in to comment.