Skip to content

Commit

Permalink
fix: update username (#16405)
Browse files Browse the repository at this point in the history
  • Loading branch information
fel1x-developer authored Jan 15, 2025
1 parent 834ad11 commit 9019aaf
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/runtime/debugger.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ This prints the following to the console:

Bun transpiles every file, which sounds like it would mean that the stack traces you see in the console would unhelpfully point to the transpiled output. To address this, Bun automatically generates and serves sourcemapped files for every file it transpiles. When you see a stack trace in the console, you can click on the file path and be taken to the original source code, even though it was written in TypeScript or JSX, or has some other transformation applied.

<!-- TODO: uncomment once v1.1.13 regression is fixed (cc @paperdave) -->
<!-- TODO: uncomment once v1.1.13 regression is fixed (cc @paperclover) -->
<!-- In Bun, each `Error` object gets four additional properties:
- `line` — the source-mapped line number. This number points to the input source code, not the transpiled output.
Expand Down
2 changes: 1 addition & 1 deletion src/bun.js/bindings/BunProcess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1910,7 +1910,7 @@ static JSValue constructReportObjectComplete(VM& vm, Zig::GlobalObject* globalOb
return report;
}
#else // !OS(WINDOWS)
return jsString(vm, String("Not implemented. blame @paperdave"_s));
return jsString(vm, String("Not implemented. blame @paperclover"_s));
#endif
}

Expand Down
2 changes: 1 addition & 1 deletion src/codegen/bundle-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// supported macros that aren't json value -> json value. Otherwise, I'd use a real JS parser/ast
// library, instead of RegExp hacks.
//
// For explanation on this, please nag @paperdave to write documentation on how everything works.
// For explanation on this, please nag @paperclover to write documentation on how everything works.
//
// The output is intended to be similar to what WebCore does internally with a couple differences:
//
Expand Down
2 changes: 1 addition & 1 deletion src/codegen/bundle-modules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// supported macros that aren't json value -> json value. Otherwise, I'd use a real JS parser/ast
// library, instead of RegExp hacks.
//
// For explanation on this, please nag @paperdave to write documentation on how everything works.
// For explanation on this, please nag @paperclover to write documentation on how everything works.
import fs from "fs";
import { mkdir, writeFile } from "fs/promises";
import { builtinModules } from "node:module";
Expand Down
2 changes: 1 addition & 1 deletion src/install/windows-shim/bun_shim_impl.zig
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
//! The compiled binary is 13312 bytes and is `@embedFile`d into Bun itself.
//! When this file is updated, the new binary should be compiled and BinLinkingShim.VersionFlag.current should be updated.
//!
//! Questions about this file should be directed at @paperdave.
//! Questions about this file should be directed at @paperclover.
const builtin = @import("builtin");
const dbg = builtin.mode == .Debug;

Expand Down
2 changes: 1 addition & 1 deletion src/napi/napi.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1882,7 +1882,7 @@ const V8API = if (!bun.Environment.isWindows) struct {
//
// dumpbin .\build\CMakeFiles\bun-debug.dir\src\bun.js\bindings\v8\*.cpp.obj /symbols | where-object { $_.Contains(' node::') -or $_.Contains(' v8::') } | foreach-object { (($_ -split "\|")[1] -split " ")[1] } | ForEach-Object { "extern fn @`"${_}`"() *anyopaque;" }
//
// Bug @paperdave if you get stuck here
// Bug @paperclover if you get stuck here
pub extern fn @"?TryGetCurrent@Isolate@v8@@SAPEAV12@XZ"() *anyopaque;
pub extern fn @"?GetCurrent@Isolate@v8@@SAPEAV12@XZ"() *anyopaque;
pub extern fn @"?GetCurrentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ"() *anyopaque;
Expand Down
2 changes: 1 addition & 1 deletion test/js/bun/shell/bunshell.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ describe("bunshell", () => {
});
}

// funny/crazy edgecases thanks to @paperdave and @Electroid
// funny/crazy edgecases thanks to @paperclover and @Electroid
doTest(`echo "$(echo 1; echo 2)"`, "1\n2\n");
doTest(`echo "$(echo "1" ; echo "2")"`, "1\n2\n");
doTest(`echo $(echo 1; echo 2)`, "1 2\n");
Expand Down

0 comments on commit 9019aaf

Please sign in to comment.