Fix formatting

This commit is contained in:
Ron Buckton
2024-04-12 12:48:12 -04:00
parent dc35984f71
commit 4ce5648104
4 changed files with 7 additions and 8 deletions

View File

@@ -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}"
}
]
}

View File

@@ -93,9 +93,7 @@ import {
VarianceFlags,
zipWith,
} from "./_namespaces/ts";
import {
BaseSyntaxObject,
} from "./nodeConstructors";
import { BaseSyntaxObject } from "./nodeConstructors";
import {
SignatureObject,
SymbolObject,

View File

@@ -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;
}
/**

View File

@@ -1,4 +1,7 @@
import { SignatureObject, SymbolObject } from "../compiler/objectConstructors";
import {
SignatureObject,
SymbolObject,
} from "../compiler/objectConstructors";
import {
__String,
ApplicableRefactorInfo,