diff options
author | 2023-08-26 02:34:25 -0700 | |
---|---|---|
committer | 2023-08-26 02:34:25 -0700 | |
commit | 2a9e967fd1c766a718808d5a7fa779d74d44e62c (patch) | |
tree | 3bf4c059c03b9b561bc565ecf7cf21eaceae5353 /packages/bun-debug-adapter-protocol/debugger/fixtures/without-sourcemap.js | |
parent | 910daeff27ead119e15f35f6c1e0aa09d2aa7562 (diff) | |
download | bun-2a9e967fd1c766a718808d5a7fa779d74d44e62c.tar.gz bun-2a9e967fd1c766a718808d5a7fa779d74d44e62c.tar.zst bun-2a9e967fd1c766a718808d5a7fa779d74d44e62c.zip |
More improvements to debugger support (#4345)
* More fixes for dap
* More changes
* More changes 2
* More fixes
* Fix debugger.ts
* Bun Terminal
Diffstat (limited to 'packages/bun-debug-adapter-protocol/debugger/fixtures/without-sourcemap.js')
-rw-r--r-- | packages/bun-debug-adapter-protocol/debugger/fixtures/without-sourcemap.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/packages/bun-debug-adapter-protocol/debugger/fixtures/without-sourcemap.js b/packages/bun-debug-adapter-protocol/debugger/fixtures/without-sourcemap.js deleted file mode 100644 index 6a5d9a948..000000000 --- a/packages/bun-debug-adapter-protocol/debugger/fixtures/without-sourcemap.js +++ /dev/null @@ -1,20 +0,0 @@ -export default { - fetch(request) { - return new Response(a()); - }, -}; - -function a() { - return b(); -} - -function b() { - return c(); -} - -function c() { - function d() { - return "hello"; - } - return d(); -} |