aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-vscode/example/example.ts
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2023-08-27 09:03:15 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-27 09:03:15 -0700
commited5dc5bbf922777acd3f637125a1978b6f2c391a (patch)
treee1e6ab8157ba441cbe612c7fd73348269a73c71e /packages/bun-vscode/example/example.ts
parent36f9d2291c71d151dceff6d7d40adbbb2c3b3809 (diff)
downloadbun-ed5dc5bbf922777acd3f637125a1978b6f2c391a.tar.gz
bun-ed5dc5bbf922777acd3f637125a1978b6f2c391a.tar.zst
bun-ed5dc5bbf922777acd3f637125a1978b6f2c391a.zip
@electroid's dap changes (#4367)
* Rework terminal, launch is still WIP * Use the proper Terminal profile API * More changes * progress --------- Co-authored-by: Ashcon Partovi <ashcon@partovi.net>
Diffstat (limited to 'packages/bun-vscode/example/example.ts')
-rw-r--r--packages/bun-vscode/example/example.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/bun-vscode/example/example.ts b/packages/bun-vscode/example/example.ts
index 536852902..d46c60415 100644
--- a/packages/bun-vscode/example/example.ts
+++ b/packages/bun-vscode/example/example.ts
@@ -29,6 +29,6 @@ interface CoolThing {
class SuperCoolThing implements CoolThing {
doCoolThing(): void {
- console.log("BLAH BLAH");
+ console.log("BLAH BLAH", new Map([[1, 2]]));
}
}