Skip to content

Commit

Permalink
move Registers after Locals
Browse files Browse the repository at this point in the history
  • Loading branch information
WebFreak001 committed Feb 7, 2024
1 parent c028fd8 commit 5a8b3c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mibase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,8 @@ export class MI2DebugSession extends DebugSession {
return new Scope(scopeName, handle, expensive);
};

scopes.push(createScope("Registers", false));
scopes.push(createScope("Locals", false));
scopes.push(createScope("Registers", false));

response.body = {
scopes: scopes
Expand Down

0 comments on commit 5a8b3c8

Please sign in to comment.