Skip to content

Commit

Permalink
Update src/debugProtocol/events/requests/VariablesRequest.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdp authored Nov 18, 2024
1 parent 33a902e commit 7179126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debugProtocol/events/requests/VariablesRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class VariablesRequest implements ProtocolRequest {

if (request.data.includesVirtualPath) {
for (let i = 0; i < variablePathLength; i++) {
//0 means case SENSITIVE lookup, 1 means forced case INsensitive lookup
//0 means this is not a virtual variable, 1 means it a virtual variable and must be request as such when making a variables request
request.data.variablePathEntries[i].isVirtual = smartBuffer.readUInt8() === 0 ? false : true;
}
}
Expand Down

0 comments on commit 7179126

Please sign in to comment.