diff options
Diffstat (limited to 'packages/bun-debug-adapter-protocol/src/debugger/fixtures/without-sourcemap.js')
-rw-r--r-- | packages/bun-debug-adapter-protocol/src/debugger/fixtures/without-sourcemap.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/bun-debug-adapter-protocol/src/debugger/fixtures/without-sourcemap.js b/packages/bun-debug-adapter-protocol/src/debugger/fixtures/without-sourcemap.js new file mode 100644 index 000000000..6a5d9a948 --- /dev/null +++ b/packages/bun-debug-adapter-protocol/src/debugger/fixtures/without-sourcemap.js @@ -0,0 +1,20 @@ +export default { + fetch(request) { + return new Response(a()); + }, +}; + +function a() { + return b(); +} + +function b() { + return c(); +} + +function c() { + function d() { + return "hello"; + } + return d(); +} |