This commit is contained in:
Ron Buckton 2024-04-12 12:48:12 -04:00
Родитель dc35984f71
Коммит 4ce5648104
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9ADA0DFD36502AB9
4 изменённых файлов: 7 добавлений и 8 удалений

4
.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}"
}
]
}

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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