mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
fix: update username (#16405)
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
|
||||
@@ -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:
|
||||
//
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user