Skip to content

Commit 24244cd

Browse files
committed
Undo some formatting changes
1 parent c6653a1 commit 24244cd

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

src/extension.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ export function activate(context: vscode.ExtensionContext) {
9595
context.subscriptions.push(vscode.commands.registerCommand('rtlDebugger.unWatchVariable', (treeItem) =>
9696
globalWatchList.remove(treeItem.metadata.index)));
9797

98-
9998
context.subscriptions.push(vscode.commands.registerCommand('rtlDebugger.browseWaveforms', () => {
10099
const webviewPanel = vscode.window.createWebviewPanel(
101100
'rtlDebugger.waveforms',

src/ui/waveform.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ export class ServerPacketString {
1616

1717

1818
export type ExtensionToWebviewMessage =
19-
| { type: 'restore', state: any }
20-
// TODO: Proper type here
21-
| { type: 'cxxrtl_scmessage', message: ServerPacketString }
22-
| { type: 'wcp_cs_message', message: string }
23-
;
19+
| { type: 'restore', state: any }
20+
// TODO: Proper type here
21+
| { type: 'cxxrtl_scmessage', message: ServerPacketString }
22+
| { type: 'wcp_cs_message', message: string }
23+
;
2424

2525
export type WebviewToExtensionMessage =
26-
| { type: 'ready' }
27-
| { type: 'crash', error: any }
28-
// TODO: Proper type here
29-
| { type: 'cxxrtl_csmessage', message: ClientPacketString }
30-
| { type: 'wcp_sc_message', message: string }
31-
;
26+
| { type: 'ready' }
27+
| { type: 'crash', error: any }
28+
// TODO: Proper type here
29+
| { type: 'cxxrtl_csmessage', message: ClientPacketString }
30+
| { type: 'wcp_sc_message', message: string }
31+
;
3232

3333
export class WaveformProvider {
3434
constructor(

0 commit comments

Comments
 (0)