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