diff options
author | 2022-03-11 00:03:09 -0800 | |
---|---|---|
committer | 2022-03-11 00:03:09 -0800 | |
commit | 44b0c8153a7092f97c36c5aab82b692f672c3ddf (patch) | |
tree | 5554a3e9e69bd689739c77745cb4a4bf87e98fd6 /packages/bun-error/runtime-error.ts | |
parent | c8f6337f1f9f22b48286c8bed1e47d44f0657cd0 (diff) | |
download | bun-44b0c8153a7092f97c36c5aab82b692f672c3ddf.tar.gz bun-44b0c8153a7092f97c36c5aab82b692f672c3ddf.tar.zst bun-44b0c8153a7092f97c36c5aab82b692f672c3ddf.zip |
Source Maps for client-side errors & columns
Diffstat (limited to 'packages/bun-error/runtime-error.ts')
-rw-r--r-- | packages/bun-error/runtime-error.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/bun-error/runtime-error.ts b/packages/bun-error/runtime-error.ts index 331040b36..c9aa3b1b2 100644 --- a/packages/bun-error/runtime-error.ts +++ b/packages/bun-error/runtime-error.ts @@ -12,6 +12,8 @@ export class StackFrame implements StackFrameType { position: StackFramePosition; scope: StackFrameScope; lineText: string = ""; + remapped: boolean = false; + constructor({ functionName: function_name = "", fileName: file = "", |