Skip to content

Commit f5ff0a6

Browse files
committed
internal: Fix lsp_ext field name for RecursiveMemoryLayoutNode
Due `editors/code/src/commands.ts` uses inline HTML, so this error pass to type check
1 parent 512db74 commit f5ff0a6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

editors/code/src/lsp_ext.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -300,14 +300,14 @@ export type SsrParams = {
300300
};
301301

302302
export type RecursiveMemoryLayoutNode = {
303-
item_name: string;
303+
itemName: string;
304304
typename: string;
305305
size: number;
306306
alignment: number;
307307
offset: number;
308-
parent_idx: number;
309-
children_start: number;
310-
children_len: number;
308+
parentIdx: number;
309+
childrenStart: number;
310+
childrenLen: number;
311311
};
312312
export type RecursiveMemoryLayout = {
313313
nodes: RecursiveMemoryLayoutNode[];

0 commit comments

Comments
 (0)