From ddb24e372bfb4200d5e2edba0079a05ea662e0a0 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Tue, 26 Sep 2023 12:10:32 -0700 Subject: [PATCH] fix: allow setting breakpoints in common wasm languages Fixes https://github.com/microsoft/vscode/issues/194146 --- src/configuration.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/configuration.ts b/src/configuration.ts index c03d07b20..be8d0143c 100644 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -1157,6 +1157,11 @@ export const breakpointLanguages: ReadonlyArray = [ 'fsharp', 'html', 'wat', + // Common wasm languages: + 'c', + 'cpp', + 'rust', + 'zig', ]; declare const EXTENSION_NAME: string;