diff options
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 = "", |