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 65234c5 commit e73faf2
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 e73faf2

Please sign in to comment.