mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-13 11:15:17 -05:00
Fix formatting
This commit is contained in:
4
.vscode/launch.template.json
vendored
4
.vscode/launch.template.json
vendored
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user