diff options
| author | Adenine <adenine.dev@gmail.com> | 2023-07-07 23:03:55 -0400 |
|---|---|---|
| committer | Adenine <adenine.dev@gmail.com> | 2023-07-07 23:12:09 -0400 |
| commit | 4d5c66986ece98fb0015cbca5ee0de1f9870c800 (patch) | |
| tree | d02cbfc6455ba70b9a40eb010f214f9596301931 /editors/code/src | |
| parent | c43cfefdd868c92f60d936e8958c0980428a0679 (diff) | |
| download | rust-4d5c66986ece98fb0015cbca5ee0de1f9870c800.tar.gz rust-4d5c66986ece98fb0015cbca5ee0de1f9870c800.zip | |
cleanup + docs + tests
Diffstat (limited to 'editors/code/src')
| -rw-r--r-- | editors/code/src/commands.ts | 2 | ||||
| -rw-r--r-- | editors/code/src/lsp_ext.ts | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts index 052e3918241..17202e5345a 100644 --- a/editors/code/src/commands.ts +++ b/editors/code/src/commands.ts @@ -1142,8 +1142,6 @@ export function viewMemoryLayout(ctx: CtxInit): Cmd { position, }); - // if (expanded == null) return "Not available"; - const document = vscode.window.createWebviewPanel( "memory_layout", "[Memory Layout]", diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts index 8a0c55a942f..9ab1a993762 100644 --- a/editors/code/src/lsp_ext.ts +++ b/editors/code/src/lsp_ext.ts @@ -218,7 +218,5 @@ export type RecursiveMemoryLayoutNode = { children_len: number; }; export type RecursiveMemoryLayout = { - name: string; - expansion: string; nodes: RecursiveMemoryLayoutNode[]; }; |
