aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-debug-adapter-protocol/debugger/fixtures/without-sourcemap.js
diff options
context:
space:
mode:
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.js20
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();
-}