diff options
author | 2023-09-01 10:19:14 -0700 | |
---|---|---|
committer | 2023-09-01 10:19:14 -0700 | |
commit | 2b421be06feb8024ed06e7aa85db14a1c37d7dbc (patch) | |
tree | 6a76dba894ddda731a15002071b8bba00edf131b /packages/bun-vscode/example/hello.js | |
parent | 1ff8155c2831b95b72fb9749b7e837df48893df6 (diff) | |
download | bun-2b421be06feb8024ed06e7aa85db14a1c37d7dbc.tar.gz bun-2b421be06feb8024ed06e7aa85db14a1c37d7dbc.tar.zst bun-2b421be06feb8024ed06e7aa85db14a1c37d7dbc.zip |
Fix breakpoint on entry for extension
Diffstat (limited to 'packages/bun-vscode/example/hello.js')
-rw-r--r-- | packages/bun-vscode/example/hello.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/bun-vscode/example/hello.js b/packages/bun-vscode/example/hello.js new file mode 100644 index 000000000..895e54790 --- /dev/null +++ b/packages/bun-vscode/example/hello.js @@ -0,0 +1,8 @@ +console.log("HELLO"); +console.log("HELLO 2"); +console.log("HELLO 3"); +a(); + +function a() { + console.log("HELLO 4"); +} |