From ef395520b168dfb3706541a1d8f5dedc7d556107 Mon Sep 17 00:00:00 2001 From: Christian Holbrook Date: Thu, 13 Jun 2024 07:17:24 -0600 Subject: [PATCH] Move lint fixes --- src/debugSession/BrightScriptDebugSession.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debugSession/BrightScriptDebugSession.ts b/src/debugSession/BrightScriptDebugSession.ts index 2f4039a..c42f49b 100644 --- a/src/debugSession/BrightScriptDebugSession.ts +++ b/src/debugSession/BrightScriptDebugSession.ts @@ -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';