Skip to content

Commit 5a8b3c8

Browse files
committed
move Registers after Locals
1 parent c028fd8 commit 5a8b3c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mibase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,8 @@ export class MI2DebugSession extends DebugSession {
405405
return new Scope(scopeName, handle, expensive);
406406
};
407407

408-
scopes.push(createScope("Registers", false));
409408
scopes.push(createScope("Locals", false));
409+
scopes.push(createScope("Registers", false));
410410

411411
response.body = {
412412
scopes: scopes

0 commit comments

Comments
 (0)