From 4ce5648104806bdacd4cccc7c6d5a486984603cd Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Fri, 12 Apr 2024 12:48:12 -0400 Subject: [PATCH] Fix formatting --- .vscode/launch.template.json | 4 ++-- src/compiler/debug.ts | 4 +--- src/compiler/types.ts | 2 -- src/services/services.ts | 5 ++++- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.vscode/launch.template.json b/.vscode/launch.template.json index 01b8d631b50..9baf0233a73 100644 --- a/.vscode/launch.template.json +++ b/.vscode/launch.template.json @@ -49,14 +49,14 @@ "sourceMaps": true, "smartStep": true, "preLaunchTask": "npm: build:tests", - "console": "integratedTerminal", + "console": "integratedTerminal" }, { // See: https://github.com/microsoft/TypeScript/wiki/Debugging-Language-Service-in-VS-Code "type": "node", "request": "attach", "name": "Attach to VS Code TS Server via Port", - "processId": "${command:PickProcess}", + "processId": "${command:PickProcess}" } ] } diff --git a/src/compiler/debug.ts b/src/compiler/debug.ts index baed30db15f..a84eed3c354 100644 --- a/src/compiler/debug.ts +++ b/src/compiler/debug.ts @@ -93,9 +93,7 @@ import { VarianceFlags, zipWith, } from "./_namespaces/ts"; -import { - BaseSyntaxObject, -} from "./nodeConstructors"; +import { BaseSyntaxObject } from "./nodeConstructors"; import { SignatureObject, SymbolObject, diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 65241609476..2bf09cb214f 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -4400,7 +4400,6 @@ export interface SourceFile extends Declaration, LocalsContainer { /** @internal */ jsDocParsingMode?: JSDocParsingMode; - /** @internal */ scriptSnapshot: IScriptSnapshot | undefined; /** @internal */ nameTable: Map<__String, number> | undefined; /** @internal */ sourceMapper?: DocumentPositionMapper; @@ -4410,7 +4409,6 @@ export interface SourceFile extends Declaration, LocalsContainer { getLineStarts(): readonly number[]; getPositionOfLineAndCharacter(line: number, character: number): number; update(newText: string, textChangeRange: TextChangeRange): SourceFile; - } /** diff --git a/src/services/services.ts b/src/services/services.ts index 0ec25031b2f..f500b65c88a 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -1,4 +1,7 @@ -import { SignatureObject, SymbolObject } from "../compiler/objectConstructors"; +import { + SignatureObject, + SymbolObject, +} from "../compiler/objectConstructors"; import { __String, ApplicableRefactorInfo,