Skip to content

Commit

Permalink
Move lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-Holbrook committed Jun 13, 2024
1 parent cbbc525 commit ef39552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/debugSession/BrightScriptDebugSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1265,8 +1265,8 @@ export class BrightScriptDebugSession extends BaseDebugSession {
deferred.resolve();
}

private async evaluateTemporaryVariables(args: DebugProtocol.EvaluateArguments, variablePath: string[]): Promise<{evalArgs: DebugProtocol.EvaluateArguments, variablePath: string[]}> {
let returnVal = {evalArgs: args, variablePath};
private async evaluateTemporaryVariables(args: DebugProtocol.EvaluateArguments, variablePath: string[]): Promise< { evalArgs: DebugProtocol.EvaluateArguments; variablePath: string[] } > {
let returnVal = { evalArgs: args, variablePath };
if (!variablePath && util.isAssignableExpression(args.expression)) {
let varIndex = this.getNextVarIndex(args.frameId);
let arrayVarName = this.tempVarPrefix + 'eval';
Expand Down

0 comments on commit ef39552

Please sign in to comment.