@typescript-deploys/pr-build 5.4.0-pr-57133-2 → 5.4.0-pr-57230-11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/cs/diagnosticMessages.generated.json +1 -1
- package/lib/de/diagnosticMessages.generated.json +1 -1
- package/lib/es/diagnosticMessages.generated.json +1 -1
- package/lib/fr/diagnosticMessages.generated.json +1 -1
- package/lib/it/diagnosticMessages.generated.json +1 -1
- package/lib/ja/diagnosticMessages.generated.json +1 -1
- package/lib/ko/diagnosticMessages.generated.json +1 -1
- package/lib/lib.esnext.collection.d.ts +46 -0
- package/lib/pl/diagnosticMessages.generated.json +1 -1
- package/lib/pt-br/diagnosticMessages.generated.json +1 -1
- package/lib/ru/diagnosticMessages.generated.json +1 -1
- package/lib/tr/diagnosticMessages.generated.json +1 -1
- package/lib/tsc.js +37 -22
- package/lib/tsserver.js +48 -31
- package/lib/typescript.d.ts +1 -1
- package/lib/typescript.js +49 -2335
- package/lib/typingsInstaller.js +3 -2
- package/lib/zh-cn/diagnosticMessages.generated.json +1 -1
- package/lib/zh-tw/diagnosticMessages.generated.json +1 -1
- package/package.json +3 -3
package/lib/typescript.js
CHANGED
|
@@ -35,7 +35,7 @@ var ts = (() => {
|
|
|
35
35
|
"src/compiler/corePublic.ts"() {
|
|
36
36
|
"use strict";
|
|
37
37
|
versionMajorMinor = "5.4";
|
|
38
|
-
version = `${versionMajorMinor}.0-insiders.
|
|
38
|
+
version = `${versionMajorMinor}.0-insiders.20240131`;
|
|
39
39
|
Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
40
40
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
41
41
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -4412,6 +4412,7 @@ ${lanes.join("\n")}
|
|
|
4412
4412
|
TypeFlags2[TypeFlags2["NonPrimitive"] = 67108864] = "NonPrimitive";
|
|
4413
4413
|
TypeFlags2[TypeFlags2["TemplateLiteral"] = 134217728] = "TemplateLiteral";
|
|
4414
4414
|
TypeFlags2[TypeFlags2["StringMapping"] = 268435456] = "StringMapping";
|
|
4415
|
+
TypeFlags2[TypeFlags2["Reserved1"] = 536870912] = "Reserved1";
|
|
4415
4416
|
TypeFlags2[TypeFlags2["AnyOrUnknown"] = 3] = "AnyOrUnknown";
|
|
4416
4417
|
TypeFlags2[TypeFlags2["Nullable"] = 98304] = "Nullable";
|
|
4417
4418
|
TypeFlags2[TypeFlags2["Literal"] = 2944] = "Literal";
|
|
@@ -4449,7 +4450,7 @@ ${lanes.join("\n")}
|
|
|
4449
4450
|
TypeFlags2[TypeFlags2["IncludesWildcard"] = 8388608 /* IndexedAccess */] = "IncludesWildcard";
|
|
4450
4451
|
TypeFlags2[TypeFlags2["IncludesEmptyObject"] = 16777216 /* Conditional */] = "IncludesEmptyObject";
|
|
4451
4452
|
TypeFlags2[TypeFlags2["IncludesInstantiable"] = 33554432 /* Substitution */] = "IncludesInstantiable";
|
|
4452
|
-
TypeFlags2[TypeFlags2["IncludesConstrainedTypeVariable"] =
|
|
4453
|
+
TypeFlags2[TypeFlags2["IncludesConstrainedTypeVariable"] = 536870912 /* Reserved1 */] = "IncludesConstrainedTypeVariable";
|
|
4453
4454
|
TypeFlags2[TypeFlags2["NotPrimitiveUnion"] = 36323331] = "NotPrimitiveUnion";
|
|
4454
4455
|
return TypeFlags2;
|
|
4455
4456
|
})(TypeFlags || {});
|
|
@@ -45394,7 +45395,11 @@ ${lanes.join("\n")}
|
|
|
45394
45395
|
if (modulePath.isRedirect) {
|
|
45395
45396
|
redirectPathsSpecifiers = append(redirectPathsSpecifiers, local);
|
|
45396
45397
|
} else if (pathIsBareSpecifier(local)) {
|
|
45397
|
-
|
|
45398
|
+
if (pathContainsNodeModules(local)) {
|
|
45399
|
+
relativeSpecifiers = append(relativeSpecifiers, local);
|
|
45400
|
+
} else {
|
|
45401
|
+
pathsSpecifiers = append(pathsSpecifiers, local);
|
|
45402
|
+
}
|
|
45398
45403
|
} else if (forAutoImport || !importedFileIsInNodeModules || modulePath.isInNodeModules) {
|
|
45399
45404
|
relativeSpecifiers = append(relativeSpecifiers, local);
|
|
45400
45405
|
}
|
|
@@ -48399,6 +48404,11 @@ ${lanes.join("\n")}
|
|
|
48399
48404
|
diagnosticMessage = error2(errorLocation, Diagnostics.Class_0_used_before_its_declaration, declarationName);
|
|
48400
48405
|
} else if (result.flags & 256 /* RegularEnum */) {
|
|
48401
48406
|
diagnosticMessage = error2(errorLocation, Diagnostics.Enum_0_used_before_its_declaration, declarationName);
|
|
48407
|
+
} else {
|
|
48408
|
+
Debug.assert(!!(result.flags & 128 /* ConstEnum */));
|
|
48409
|
+
if (getIsolatedModules(compilerOptions)) {
|
|
48410
|
+
diagnosticMessage = error2(errorLocation, Diagnostics.Enum_0_used_before_its_declaration, declarationName);
|
|
48411
|
+
}
|
|
48402
48412
|
}
|
|
48403
48413
|
if (diagnosticMessage) {
|
|
48404
48414
|
addRelatedInfo(diagnosticMessage, createDiagnosticForNode(declaration, Diagnostics._0_is_declared_here, declarationName));
|
|
@@ -57548,7 +57558,7 @@ ${lanes.join("\n")}
|
|
|
57548
57558
|
return simplified !== type ? simplified : getConstraintOfType(type);
|
|
57549
57559
|
}
|
|
57550
57560
|
function getConstraintFromIndexedAccess(type) {
|
|
57551
|
-
if (isMappedTypeGenericIndexedAccess(type)
|
|
57561
|
+
if (isMappedTypeGenericIndexedAccess(type)) {
|
|
57552
57562
|
return substituteIndexedMappedType(type.objectType, type.indexType);
|
|
57553
57563
|
}
|
|
57554
57564
|
const indexConstraint = getSimplifiedTypeOrConstraint(type.indexType);
|
|
@@ -58061,10 +58071,14 @@ ${lanes.join("\n")}
|
|
|
58061
58071
|
return errorInfo;
|
|
58062
58072
|
}
|
|
58063
58073
|
function getPropertyOfType(type, name, skipObjectFunctionPropertyAugment, includeTypeOnlyMembers) {
|
|
58074
|
+
var _a, _b;
|
|
58064
58075
|
type = getReducedApparentType(type);
|
|
58065
58076
|
if (type.flags & 524288 /* Object */) {
|
|
58066
58077
|
const resolved = resolveStructuredTypeMembers(type);
|
|
58067
58078
|
const symbol = resolved.members.get(name);
|
|
58079
|
+
if (symbol && !includeTypeOnlyMembers && ((_a = type.symbol) == null ? void 0 : _a.flags) & 512 /* ValueModule */ && ((_b = getSymbolLinks(type.symbol).typeOnlyExportStarMap) == null ? void 0 : _b.has(name))) {
|
|
58080
|
+
return void 0;
|
|
58081
|
+
}
|
|
58068
58082
|
if (symbol && symbolIsValue(symbol, includeTypeOnlyMembers)) {
|
|
58069
58083
|
return symbol;
|
|
58070
58084
|
}
|
|
@@ -59967,7 +59981,7 @@ ${lanes.join("\n")}
|
|
|
59967
59981
|
if (flags & 465829888 /* Instantiable */)
|
|
59968
59982
|
includes |= 33554432 /* IncludesInstantiable */;
|
|
59969
59983
|
if (flags & 2097152 /* Intersection */ && getObjectFlags(type) & 67108864 /* IsConstrainedTypeVariable */)
|
|
59970
|
-
includes |=
|
|
59984
|
+
includes |= 536870912 /* IncludesConstrainedTypeVariable */;
|
|
59971
59985
|
if (type === wildcardType)
|
|
59972
59986
|
includes |= 8388608 /* IncludesWildcard */;
|
|
59973
59987
|
if (!strictNullChecks && flags & 98304 /* Nullable */) {
|
|
@@ -60060,18 +60074,21 @@ ${lanes.join("\n")}
|
|
|
60060
60074
|
}
|
|
60061
60075
|
}
|
|
60062
60076
|
function removeStringLiteralsMatchedByTemplateLiterals(types) {
|
|
60063
|
-
const templates = filter(types,
|
|
60077
|
+
const templates = filter(types, isPatternLiteralType);
|
|
60064
60078
|
if (templates.length) {
|
|
60065
60079
|
let i = types.length;
|
|
60066
60080
|
while (i > 0) {
|
|
60067
60081
|
i--;
|
|
60068
60082
|
const t = types[i];
|
|
60069
|
-
if (t.flags & 128 /* StringLiteral */ && some(templates, (template) =>
|
|
60083
|
+
if (t.flags & 128 /* StringLiteral */ && some(templates, (template) => isTypeMatchedByTemplateLiteralOrStringMapping(t, template))) {
|
|
60070
60084
|
orderedRemoveItemAt(types, i);
|
|
60071
60085
|
}
|
|
60072
60086
|
}
|
|
60073
60087
|
}
|
|
60074
60088
|
}
|
|
60089
|
+
function isTypeMatchedByTemplateLiteralOrStringMapping(type, template) {
|
|
60090
|
+
return template.flags & 134217728 /* TemplateLiteral */ ? isTypeMatchedByTemplateLiteralType(type, template) : isMemberOfStringMapping(type, template);
|
|
60091
|
+
}
|
|
60075
60092
|
function removeConstrainedTypeVariables(types) {
|
|
60076
60093
|
const typeVariables = [];
|
|
60077
60094
|
for (const type of types) {
|
|
@@ -60169,10 +60186,10 @@ ${lanes.join("\n")}
|
|
|
60169
60186
|
if (includes & (32 /* Enum */ | 2944 /* Literal */ | 8192 /* UniqueESSymbol */ | 134217728 /* TemplateLiteral */ | 268435456 /* StringMapping */) || includes & 16384 /* Void */ && includes & 32768 /* Undefined */) {
|
|
60170
60187
|
removeRedundantLiteralTypes(typeSet, includes, !!(unionReduction & 2 /* Subtype */));
|
|
60171
60188
|
}
|
|
60172
|
-
if (includes & 128 /* StringLiteral */ && includes & 134217728 /* TemplateLiteral */) {
|
|
60189
|
+
if (includes & 128 /* StringLiteral */ && includes & (134217728 /* TemplateLiteral */ | 268435456 /* StringMapping */)) {
|
|
60173
60190
|
removeStringLiteralsMatchedByTemplateLiterals(typeSet);
|
|
60174
60191
|
}
|
|
60175
|
-
if (includes &
|
|
60192
|
+
if (includes & 536870912 /* IncludesConstrainedTypeVariable */) {
|
|
60176
60193
|
removeConstrainedTypeVariables(typeSet);
|
|
60177
60194
|
}
|
|
60178
60195
|
if (unionReduction === 2 /* Subtype */) {
|
|
@@ -60336,7 +60353,7 @@ ${lanes.join("\n")}
|
|
|
60336
60353
|
while (i > 0) {
|
|
60337
60354
|
i--;
|
|
60338
60355
|
const t = types[i];
|
|
60339
|
-
if (!(t.flags & 134217728 /* TemplateLiteral */))
|
|
60356
|
+
if (!(t.flags & (134217728 /* TemplateLiteral */ | 268435456 /* StringMapping */)))
|
|
60340
60357
|
continue;
|
|
60341
60358
|
for (const t2 of literals) {
|
|
60342
60359
|
if (isTypeSubtypeOf(t2, t)) {
|
|
@@ -60410,7 +60427,7 @@ ${lanes.join("\n")}
|
|
|
60410
60427
|
if (strictNullChecks && includes & 98304 /* Nullable */ && includes & (524288 /* Object */ | 67108864 /* NonPrimitive */ | 16777216 /* IncludesEmptyObject */) || includes & 67108864 /* NonPrimitive */ && includes & (469892092 /* DisjointDomains */ & ~67108864 /* NonPrimitive */) || includes & 402653316 /* StringLike */ && includes & (469892092 /* DisjointDomains */ & ~402653316 /* StringLike */) || includes & 296 /* NumberLike */ && includes & (469892092 /* DisjointDomains */ & ~296 /* NumberLike */) || includes & 2112 /* BigIntLike */ && includes & (469892092 /* DisjointDomains */ & ~2112 /* BigIntLike */) || includes & 12288 /* ESSymbolLike */ && includes & (469892092 /* DisjointDomains */ & ~12288 /* ESSymbolLike */) || includes & 49152 /* VoidLike */ && includes & (469892092 /* DisjointDomains */ & ~49152 /* VoidLike */)) {
|
|
60411
60428
|
return neverType;
|
|
60412
60429
|
}
|
|
60413
|
-
if (includes & 134217728 /* TemplateLiteral */ && includes & 128 /* StringLiteral */ && extractRedundantTemplateLiterals(typeSet)) {
|
|
60430
|
+
if (includes & (134217728 /* TemplateLiteral */ | 268435456 /* StringMapping */) && includes & 128 /* StringLiteral */ && extractRedundantTemplateLiterals(typeSet)) {
|
|
60414
60431
|
return neverType;
|
|
60415
60432
|
}
|
|
60416
60433
|
if (includes & 1 /* Any */) {
|
|
@@ -78579,19 +78596,16 @@ ${lanes.join("\n")}
|
|
|
78579
78596
|
}
|
|
78580
78597
|
}
|
|
78581
78598
|
}
|
|
78582
|
-
function
|
|
78599
|
+
function getReturnTypeOfSingleNonGenericCallSignature(funcType) {
|
|
78583
78600
|
const signature = getSingleCallSignature(funcType);
|
|
78584
|
-
if (signature) {
|
|
78585
|
-
|
|
78586
|
-
if (!signature.typeParameters || !couldContainTypeVariables(returnType)) {
|
|
78587
|
-
return returnType;
|
|
78588
|
-
}
|
|
78601
|
+
if (signature && !signature.typeParameters) {
|
|
78602
|
+
return getReturnTypeOfSignature(signature);
|
|
78589
78603
|
}
|
|
78590
78604
|
}
|
|
78591
78605
|
function getReturnTypeOfSingleNonGenericSignatureOfCallChain(expr) {
|
|
78592
78606
|
const funcType = checkExpression(expr.expression);
|
|
78593
78607
|
const nonOptionalType = getOptionalExpressionType(funcType, expr.expression);
|
|
78594
|
-
const returnType =
|
|
78608
|
+
const returnType = getReturnTypeOfSingleNonGenericCallSignature(funcType);
|
|
78595
78609
|
return returnType && propagateOptionalTypeMarker(returnType, expr, nonOptionalType !== funcType);
|
|
78596
78610
|
}
|
|
78597
78611
|
function getTypeOfExpression(node) {
|
|
@@ -78636,7 +78650,7 @@ ${lanes.join("\n")}
|
|
|
78636
78650
|
/*requireStringLiteralLikeArgument*/
|
|
78637
78651
|
true
|
|
78638
78652
|
) && !isSymbolOrSymbolForCall(expr)) {
|
|
78639
|
-
return isCallChain(expr) ? getReturnTypeOfSingleNonGenericSignatureOfCallChain(expr) :
|
|
78653
|
+
return isCallChain(expr) ? getReturnTypeOfSingleNonGenericSignatureOfCallChain(expr) : getReturnTypeOfSingleNonGenericCallSignature(checkNonNullExpression(expr.expression));
|
|
78640
78654
|
} else if (isAssertionExpression(expr) && !isConstTypeReference(expr.type)) {
|
|
78641
78655
|
return getTypeFromTypeNode(expr.type);
|
|
78642
78656
|
} else if (isLiteralExpression(node) || isBooleanLiteral(node)) {
|
|
@@ -83991,14 +84005,15 @@ ${lanes.join("\n")}
|
|
|
83991
84005
|
idText(id)
|
|
83992
84006
|
);
|
|
83993
84007
|
}
|
|
83994
|
-
if (!isIllegalExportDefaultInCJS && getIsolatedModules(compilerOptions) && !(sym.flags & 111551 /* Value */)) {
|
|
83995
|
-
|
|
84008
|
+
if (!isIllegalExportDefaultInCJS && !(node.flags & 33554432 /* Ambient */) && getIsolatedModules(compilerOptions) && !(sym.flags & 111551 /* Value */)) {
|
|
84009
|
+
const nonLocalMeanings = getSymbolFlags(
|
|
83996
84010
|
sym,
|
|
83997
84011
|
/*excludeTypeOnlyMeanings*/
|
|
83998
84012
|
false,
|
|
83999
84013
|
/*excludeLocalMeanings*/
|
|
84000
84014
|
true
|
|
84001
|
-
)
|
|
84015
|
+
);
|
|
84016
|
+
if (sym.flags & 2097152 /* Alias */ && nonLocalMeanings & 788968 /* Type */ && !(nonLocalMeanings & 111551 /* Value */) && (!typeOnlyDeclaration || getSourceFileOfNode(typeOnlyDeclaration) !== getSourceFileOfNode(node))) {
|
|
84002
84017
|
error2(
|
|
84003
84018
|
id,
|
|
84004
84019
|
node.isExportEquals ? Diagnostics._0_resolves_to_a_type_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_import_type_where_0_is_imported : Diagnostics._0_resolves_to_a_type_and_must_be_marked_type_only_in_this_file_before_re_exporting_when_1_is_enabled_Consider_using_export_type_0_as_default,
|
|
@@ -144798,17 +144813,19 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
144798
144813
|
Debug.assert(isJsxOpeningElement(tag) || isJsxClosingElement(tag), "tag should be opening or closing element");
|
|
144799
144814
|
const openTag = tag.parent.openingElement;
|
|
144800
144815
|
const closeTag = tag.parent.closingElement;
|
|
144801
|
-
const
|
|
144802
|
-
const
|
|
144803
|
-
const
|
|
144804
|
-
const
|
|
144805
|
-
if (
|
|
144816
|
+
const openTagNameStart = openTag.tagName.getStart(sourceFile);
|
|
144817
|
+
const openTagNameEnd = openTag.tagName.end;
|
|
144818
|
+
const closeTagNameStart = closeTag.tagName.getStart(sourceFile);
|
|
144819
|
+
const closeTagNameEnd = closeTag.tagName.end;
|
|
144820
|
+
if (openTagNameStart === openTag.getStart(sourceFile) || closeTagNameStart === closeTag.getStart(sourceFile) || openTagNameEnd === openTag.getEnd() || closeTagNameEnd === closeTag.getEnd())
|
|
144821
|
+
return void 0;
|
|
144822
|
+
if (!(openTagNameStart <= position && position <= openTagNameEnd || closeTagNameStart <= position && position <= closeTagNameEnd))
|
|
144806
144823
|
return void 0;
|
|
144807
144824
|
const openingTagText = openTag.tagName.getText(sourceFile);
|
|
144808
144825
|
if (openingTagText !== closeTag.tagName.getText(sourceFile))
|
|
144809
144826
|
return void 0;
|
|
144810
144827
|
return {
|
|
144811
|
-
ranges: [{ start:
|
|
144828
|
+
ranges: [{ start: openTagNameStart, length: openTagNameEnd - openTagNameStart }, { start: closeTagNameStart, length: closeTagNameEnd - closeTagNameStart }],
|
|
144812
144829
|
wordPattern: jsxTagWordPattern
|
|
144813
144830
|
};
|
|
144814
144831
|
}
|
|
@@ -151567,7 +151584,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
151567
151584
|
}
|
|
151568
151585
|
}
|
|
151569
151586
|
function tryGetConstraintFromDiagnosticMessage(messageText) {
|
|
151570
|
-
const [
|
|
151587
|
+
const [, constraint] = flattenDiagnosticMessageText(messageText, "\n", 0).match(/`extends (.*)`/) || [];
|
|
151571
151588
|
return constraint;
|
|
151572
151589
|
}
|
|
151573
151590
|
function tryGetConstraintType(checker, node) {
|
|
@@ -153707,7 +153724,7 @@ ${newComment.split("\n").map((c) => ` * ${c}`).join("\n")}
|
|
|
153707
153724
|
);
|
|
153708
153725
|
}
|
|
153709
153726
|
function getSuggestion(messageText) {
|
|
153710
|
-
const [
|
|
153727
|
+
const [, suggestion] = flattenDiagnosticMessageText(messageText, "\n", 0).match(/'(.*)'/) || [];
|
|
153711
153728
|
return suggestion;
|
|
153712
153729
|
}
|
|
153713
153730
|
var fixId28, errorCodes35;
|
|
@@ -178000,7 +178017,7 @@ ${options.prefix}` : "\n" : options.prefix
|
|
|
178000
178017
|
}
|
|
178001
178018
|
}
|
|
178002
178019
|
function convertUserPreferences(preferences) {
|
|
178003
|
-
const { lazyConfiguredProjectsFromExternalProject, ...userPreferences } = preferences;
|
|
178020
|
+
const { lazyConfiguredProjectsFromExternalProject: _, ...userPreferences } = preferences;
|
|
178004
178021
|
return userPreferences;
|
|
178005
178022
|
}
|
|
178006
178023
|
function findProjectByName(projectName, projects) {
|
|
@@ -190659,2308 +190676,5 @@ ${e.message}`;
|
|
|
190659
190676
|
return require_typescript();
|
|
190660
190677
|
})();
|
|
190661
190678
|
|
|
190662
|
-
if (typeof module !== "undefined" && module.exports) {
|
|
190663
|
-
module.exports = ts;
|
|
190664
|
-
0 && (module.exports = {
|
|
190665
|
-
ANONYMOUS,
|
|
190666
|
-
AccessFlags,
|
|
190667
|
-
AssertionLevel,
|
|
190668
|
-
AssignmentDeclarationKind,
|
|
190669
|
-
AssignmentKind,
|
|
190670
|
-
Associativity,
|
|
190671
|
-
BreakpointResolver,
|
|
190672
|
-
BuilderFileEmit,
|
|
190673
|
-
BuilderProgramKind,
|
|
190674
|
-
BuilderState,
|
|
190675
|
-
BundleFileSectionKind,
|
|
190676
|
-
CallHierarchy,
|
|
190677
|
-
CharacterCodes,
|
|
190678
|
-
CheckFlags,
|
|
190679
|
-
CheckMode,
|
|
190680
|
-
ClassificationType,
|
|
190681
|
-
ClassificationTypeNames,
|
|
190682
|
-
CommentDirectiveType,
|
|
190683
|
-
Comparison,
|
|
190684
|
-
CompletionInfoFlags,
|
|
190685
|
-
CompletionTriggerKind,
|
|
190686
|
-
Completions,
|
|
190687
|
-
ContainerFlags,
|
|
190688
|
-
ContextFlags,
|
|
190689
|
-
Debug,
|
|
190690
|
-
DiagnosticCategory,
|
|
190691
|
-
Diagnostics,
|
|
190692
|
-
DocumentHighlights,
|
|
190693
|
-
ElementFlags,
|
|
190694
|
-
EmitFlags,
|
|
190695
|
-
EmitHint,
|
|
190696
|
-
EmitOnly,
|
|
190697
|
-
EndOfLineState,
|
|
190698
|
-
EnumKind,
|
|
190699
|
-
ExitStatus,
|
|
190700
|
-
ExportKind,
|
|
190701
|
-
Extension,
|
|
190702
|
-
ExternalEmitHelpers,
|
|
190703
|
-
FileIncludeKind,
|
|
190704
|
-
FilePreprocessingDiagnosticsKind,
|
|
190705
|
-
FileSystemEntryKind,
|
|
190706
|
-
FileWatcherEventKind,
|
|
190707
|
-
FindAllReferences,
|
|
190708
|
-
FlattenLevel,
|
|
190709
|
-
FlowFlags,
|
|
190710
|
-
ForegroundColorEscapeSequences,
|
|
190711
|
-
FunctionFlags,
|
|
190712
|
-
GeneratedIdentifierFlags,
|
|
190713
|
-
GetLiteralTextFlags,
|
|
190714
|
-
GoToDefinition,
|
|
190715
|
-
HighlightSpanKind,
|
|
190716
|
-
IdentifierNameMap,
|
|
190717
|
-
IdentifierNameMultiMap,
|
|
190718
|
-
ImportKind,
|
|
190719
|
-
ImportsNotUsedAsValues,
|
|
190720
|
-
IndentStyle,
|
|
190721
|
-
IndexFlags,
|
|
190722
|
-
IndexKind,
|
|
190723
|
-
InferenceFlags,
|
|
190724
|
-
InferencePriority,
|
|
190725
|
-
InlayHintKind,
|
|
190726
|
-
InlayHints,
|
|
190727
|
-
InternalEmitFlags,
|
|
190728
|
-
InternalSymbolName,
|
|
190729
|
-
InvalidatedProjectKind,
|
|
190730
|
-
JSDocParsingMode,
|
|
190731
|
-
JsDoc,
|
|
190732
|
-
JsTyping,
|
|
190733
|
-
JsxEmit,
|
|
190734
|
-
JsxFlags,
|
|
190735
|
-
JsxReferenceKind,
|
|
190736
|
-
LanguageServiceMode,
|
|
190737
|
-
LanguageVariant,
|
|
190738
|
-
LexicalEnvironmentFlags,
|
|
190739
|
-
ListFormat,
|
|
190740
|
-
LogLevel,
|
|
190741
|
-
MemberOverrideStatus,
|
|
190742
|
-
ModifierFlags,
|
|
190743
|
-
ModuleDetectionKind,
|
|
190744
|
-
ModuleInstanceState,
|
|
190745
|
-
ModuleKind,
|
|
190746
|
-
ModuleResolutionKind,
|
|
190747
|
-
ModuleSpecifierEnding,
|
|
190748
|
-
NavigateTo,
|
|
190749
|
-
NavigationBar,
|
|
190750
|
-
NewLineKind,
|
|
190751
|
-
NodeBuilderFlags,
|
|
190752
|
-
NodeCheckFlags,
|
|
190753
|
-
NodeFactoryFlags,
|
|
190754
|
-
NodeFlags,
|
|
190755
|
-
NodeResolutionFeatures,
|
|
190756
|
-
ObjectFlags,
|
|
190757
|
-
OperationCanceledException,
|
|
190758
|
-
OperatorPrecedence,
|
|
190759
|
-
OrganizeImports,
|
|
190760
|
-
OrganizeImportsMode,
|
|
190761
|
-
OuterExpressionKinds,
|
|
190762
|
-
OutliningElementsCollector,
|
|
190763
|
-
OutliningSpanKind,
|
|
190764
|
-
OutputFileType,
|
|
190765
|
-
PackageJsonAutoImportPreference,
|
|
190766
|
-
PackageJsonDependencyGroup,
|
|
190767
|
-
PatternMatchKind,
|
|
190768
|
-
PollingInterval,
|
|
190769
|
-
PollingWatchKind,
|
|
190770
|
-
PragmaKindFlags,
|
|
190771
|
-
PrivateIdentifierKind,
|
|
190772
|
-
ProcessLevel,
|
|
190773
|
-
ProgramUpdateLevel,
|
|
190774
|
-
QuotePreference,
|
|
190775
|
-
RelationComparisonResult,
|
|
190776
|
-
Rename,
|
|
190777
|
-
ScriptElementKind,
|
|
190778
|
-
ScriptElementKindModifier,
|
|
190779
|
-
ScriptKind,
|
|
190780
|
-
ScriptSnapshot,
|
|
190781
|
-
ScriptTarget,
|
|
190782
|
-
SemanticClassificationFormat,
|
|
190783
|
-
SemanticMeaning,
|
|
190784
|
-
SemicolonPreference,
|
|
190785
|
-
SignatureCheckMode,
|
|
190786
|
-
SignatureFlags,
|
|
190787
|
-
SignatureHelp,
|
|
190788
|
-
SignatureKind,
|
|
190789
|
-
SmartSelectionRange,
|
|
190790
|
-
SnippetKind,
|
|
190791
|
-
SortKind,
|
|
190792
|
-
StructureIsReused,
|
|
190793
|
-
SymbolAccessibility,
|
|
190794
|
-
SymbolDisplay,
|
|
190795
|
-
SymbolDisplayPartKind,
|
|
190796
|
-
SymbolFlags,
|
|
190797
|
-
SymbolFormatFlags,
|
|
190798
|
-
SyntaxKind,
|
|
190799
|
-
SyntheticSymbolKind,
|
|
190800
|
-
Ternary,
|
|
190801
|
-
ThrottledCancellationToken,
|
|
190802
|
-
TokenClass,
|
|
190803
|
-
TokenFlags,
|
|
190804
|
-
TransformFlags,
|
|
190805
|
-
TypeFacts,
|
|
190806
|
-
TypeFlags,
|
|
190807
|
-
TypeFormatFlags,
|
|
190808
|
-
TypeMapKind,
|
|
190809
|
-
TypePredicateKind,
|
|
190810
|
-
TypeReferenceSerializationKind,
|
|
190811
|
-
UnionReduction,
|
|
190812
|
-
UpToDateStatusType,
|
|
190813
|
-
VarianceFlags,
|
|
190814
|
-
Version,
|
|
190815
|
-
VersionRange,
|
|
190816
|
-
WatchDirectoryFlags,
|
|
190817
|
-
WatchDirectoryKind,
|
|
190818
|
-
WatchFileKind,
|
|
190819
|
-
WatchLogLevel,
|
|
190820
|
-
WatchType,
|
|
190821
|
-
accessPrivateIdentifier,
|
|
190822
|
-
addDisposableResourceHelper,
|
|
190823
|
-
addEmitFlags,
|
|
190824
|
-
addEmitHelper,
|
|
190825
|
-
addEmitHelpers,
|
|
190826
|
-
addInternalEmitFlags,
|
|
190827
|
-
addNodeFactoryPatcher,
|
|
190828
|
-
addObjectAllocatorPatcher,
|
|
190829
|
-
addRange,
|
|
190830
|
-
addRelatedInfo,
|
|
190831
|
-
addSyntheticLeadingComment,
|
|
190832
|
-
addSyntheticTrailingComment,
|
|
190833
|
-
addToSeen,
|
|
190834
|
-
advancedAsyncSuperHelper,
|
|
190835
|
-
affectsDeclarationPathOptionDeclarations,
|
|
190836
|
-
affectsEmitOptionDeclarations,
|
|
190837
|
-
allKeysStartWithDot,
|
|
190838
|
-
altDirectorySeparator,
|
|
190839
|
-
and,
|
|
190840
|
-
append,
|
|
190841
|
-
appendIfUnique,
|
|
190842
|
-
arrayFrom,
|
|
190843
|
-
arrayIsEqualTo,
|
|
190844
|
-
arrayIsHomogeneous,
|
|
190845
|
-
arrayIsSorted,
|
|
190846
|
-
arrayOf,
|
|
190847
|
-
arrayReverseIterator,
|
|
190848
|
-
arrayToMap,
|
|
190849
|
-
arrayToMultiMap,
|
|
190850
|
-
arrayToNumericMap,
|
|
190851
|
-
arraysEqual,
|
|
190852
|
-
assertType,
|
|
190853
|
-
assign,
|
|
190854
|
-
assignHelper,
|
|
190855
|
-
asyncDelegator,
|
|
190856
|
-
asyncGeneratorHelper,
|
|
190857
|
-
asyncSuperHelper,
|
|
190858
|
-
asyncValues,
|
|
190859
|
-
attachFileToDiagnostics,
|
|
190860
|
-
awaitHelper,
|
|
190861
|
-
awaiterHelper,
|
|
190862
|
-
base64decode,
|
|
190863
|
-
base64encode,
|
|
190864
|
-
binarySearch,
|
|
190865
|
-
binarySearchKey,
|
|
190866
|
-
bindSourceFile,
|
|
190867
|
-
breakIntoCharacterSpans,
|
|
190868
|
-
breakIntoWordSpans,
|
|
190869
|
-
buildLinkParts,
|
|
190870
|
-
buildOpts,
|
|
190871
|
-
buildOverload,
|
|
190872
|
-
bundlerModuleNameResolver,
|
|
190873
|
-
canBeConvertedToAsync,
|
|
190874
|
-
canHaveDecorators,
|
|
190875
|
-
canHaveExportModifier,
|
|
190876
|
-
canHaveFlowNode,
|
|
190877
|
-
canHaveIllegalDecorators,
|
|
190878
|
-
canHaveIllegalModifiers,
|
|
190879
|
-
canHaveIllegalType,
|
|
190880
|
-
canHaveIllegalTypeParameters,
|
|
190881
|
-
canHaveJSDoc,
|
|
190882
|
-
canHaveLocals,
|
|
190883
|
-
canHaveModifiers,
|
|
190884
|
-
canHaveSymbol,
|
|
190885
|
-
canJsonReportNoInputFiles,
|
|
190886
|
-
canProduceDiagnostics,
|
|
190887
|
-
canUsePropertyAccess,
|
|
190888
|
-
canWatchAffectingLocation,
|
|
190889
|
-
canWatchAtTypes,
|
|
190890
|
-
canWatchDirectoryOrFile,
|
|
190891
|
-
cartesianProduct,
|
|
190892
|
-
cast,
|
|
190893
|
-
chainBundle,
|
|
190894
|
-
chainDiagnosticMessages,
|
|
190895
|
-
changeAnyExtension,
|
|
190896
|
-
changeCompilerHostLikeToUseCache,
|
|
190897
|
-
changeExtension,
|
|
190898
|
-
changeFullExtension,
|
|
190899
|
-
changesAffectModuleResolution,
|
|
190900
|
-
changesAffectingProgramStructure,
|
|
190901
|
-
childIsDecorated,
|
|
190902
|
-
classElementOrClassElementParameterIsDecorated,
|
|
190903
|
-
classHasClassThisAssignment,
|
|
190904
|
-
classHasDeclaredOrExplicitlyAssignedName,
|
|
190905
|
-
classHasExplicitlyAssignedName,
|
|
190906
|
-
classOrConstructorParameterIsDecorated,
|
|
190907
|
-
classPrivateFieldGetHelper,
|
|
190908
|
-
classPrivateFieldInHelper,
|
|
190909
|
-
classPrivateFieldSetHelper,
|
|
190910
|
-
classicNameResolver,
|
|
190911
|
-
classifier,
|
|
190912
|
-
cleanExtendedConfigCache,
|
|
190913
|
-
clear,
|
|
190914
|
-
clearMap,
|
|
190915
|
-
clearSharedExtendedConfigFileWatcher,
|
|
190916
|
-
climbPastPropertyAccess,
|
|
190917
|
-
climbPastPropertyOrElementAccess,
|
|
190918
|
-
clone,
|
|
190919
|
-
cloneCompilerOptions,
|
|
190920
|
-
closeFileWatcher,
|
|
190921
|
-
closeFileWatcherOf,
|
|
190922
|
-
codefix,
|
|
190923
|
-
collapseTextChangeRangesAcrossMultipleVersions,
|
|
190924
|
-
collectExternalModuleInfo,
|
|
190925
|
-
combine,
|
|
190926
|
-
combinePaths,
|
|
190927
|
-
commentPragmas,
|
|
190928
|
-
commonOptionsWithBuild,
|
|
190929
|
-
commonPackageFolders,
|
|
190930
|
-
compact,
|
|
190931
|
-
compareBooleans,
|
|
190932
|
-
compareDataObjects,
|
|
190933
|
-
compareDiagnostics,
|
|
190934
|
-
compareDiagnosticsSkipRelatedInformation,
|
|
190935
|
-
compareEmitHelpers,
|
|
190936
|
-
compareNumberOfDirectorySeparators,
|
|
190937
|
-
comparePaths,
|
|
190938
|
-
comparePathsCaseInsensitive,
|
|
190939
|
-
comparePathsCaseSensitive,
|
|
190940
|
-
comparePatternKeys,
|
|
190941
|
-
compareProperties,
|
|
190942
|
-
compareStringsCaseInsensitive,
|
|
190943
|
-
compareStringsCaseInsensitiveEslintCompatible,
|
|
190944
|
-
compareStringsCaseSensitive,
|
|
190945
|
-
compareStringsCaseSensitiveUI,
|
|
190946
|
-
compareTextSpans,
|
|
190947
|
-
compareValues,
|
|
190948
|
-
compileOnSaveCommandLineOption,
|
|
190949
|
-
compilerOptionsAffectDeclarationPath,
|
|
190950
|
-
compilerOptionsAffectEmit,
|
|
190951
|
-
compilerOptionsAffectSemanticDiagnostics,
|
|
190952
|
-
compilerOptionsDidYouMeanDiagnostics,
|
|
190953
|
-
compilerOptionsIndicateEsModules,
|
|
190954
|
-
compose,
|
|
190955
|
-
computeCommonSourceDirectoryOfFilenames,
|
|
190956
|
-
computeLineAndCharacterOfPosition,
|
|
190957
|
-
computeLineOfPosition,
|
|
190958
|
-
computeLineStarts,
|
|
190959
|
-
computePositionOfLineAndCharacter,
|
|
190960
|
-
computeSignature,
|
|
190961
|
-
computeSignatureWithDiagnostics,
|
|
190962
|
-
computeSuggestionDiagnostics,
|
|
190963
|
-
computedOptions,
|
|
190964
|
-
concatenate,
|
|
190965
|
-
concatenateDiagnosticMessageChains,
|
|
190966
|
-
consumesNodeCoreModules,
|
|
190967
|
-
contains,
|
|
190968
|
-
containsIgnoredPath,
|
|
190969
|
-
containsObjectRestOrSpread,
|
|
190970
|
-
containsParseError,
|
|
190971
|
-
containsPath,
|
|
190972
|
-
convertCompilerOptionsForTelemetry,
|
|
190973
|
-
convertCompilerOptionsFromJson,
|
|
190974
|
-
convertJsonOption,
|
|
190975
|
-
convertToBase64,
|
|
190976
|
-
convertToJson,
|
|
190977
|
-
convertToObject,
|
|
190978
|
-
convertToOptionsWithAbsolutePaths,
|
|
190979
|
-
convertToRelativePath,
|
|
190980
|
-
convertToTSConfig,
|
|
190981
|
-
convertTypeAcquisitionFromJson,
|
|
190982
|
-
copyComments,
|
|
190983
|
-
copyEntries,
|
|
190984
|
-
copyLeadingComments,
|
|
190985
|
-
copyProperties,
|
|
190986
|
-
copyTrailingAsLeadingComments,
|
|
190987
|
-
copyTrailingComments,
|
|
190988
|
-
couldStartTrivia,
|
|
190989
|
-
countWhere,
|
|
190990
|
-
createAbstractBuilder,
|
|
190991
|
-
createAccessorPropertyBackingField,
|
|
190992
|
-
createAccessorPropertyGetRedirector,
|
|
190993
|
-
createAccessorPropertySetRedirector,
|
|
190994
|
-
createBaseNodeFactory,
|
|
190995
|
-
createBinaryExpressionTrampoline,
|
|
190996
|
-
createBindingHelper,
|
|
190997
|
-
createBuildInfo,
|
|
190998
|
-
createBuilderProgram,
|
|
190999
|
-
createBuilderProgramUsingProgramBuildInfo,
|
|
191000
|
-
createBuilderStatusReporter,
|
|
191001
|
-
createCacheWithRedirects,
|
|
191002
|
-
createCacheableExportInfoMap,
|
|
191003
|
-
createCachedDirectoryStructureHost,
|
|
191004
|
-
createClassNamedEvaluationHelperBlock,
|
|
191005
|
-
createClassThisAssignmentBlock,
|
|
191006
|
-
createClassifier,
|
|
191007
|
-
createCommentDirectivesMap,
|
|
191008
|
-
createCompilerDiagnostic,
|
|
191009
|
-
createCompilerDiagnosticForInvalidCustomType,
|
|
191010
|
-
createCompilerDiagnosticFromMessageChain,
|
|
191011
|
-
createCompilerHost,
|
|
191012
|
-
createCompilerHostFromProgramHost,
|
|
191013
|
-
createCompilerHostWorker,
|
|
191014
|
-
createDetachedDiagnostic,
|
|
191015
|
-
createDiagnosticCollection,
|
|
191016
|
-
createDiagnosticForFileFromMessageChain,
|
|
191017
|
-
createDiagnosticForNode,
|
|
191018
|
-
createDiagnosticForNodeArray,
|
|
191019
|
-
createDiagnosticForNodeArrayFromMessageChain,
|
|
191020
|
-
createDiagnosticForNodeFromMessageChain,
|
|
191021
|
-
createDiagnosticForNodeInSourceFile,
|
|
191022
|
-
createDiagnosticForRange,
|
|
191023
|
-
createDiagnosticMessageChainFromDiagnostic,
|
|
191024
|
-
createDiagnosticReporter,
|
|
191025
|
-
createDocumentPositionMapper,
|
|
191026
|
-
createDocumentRegistry,
|
|
191027
|
-
createDocumentRegistryInternal,
|
|
191028
|
-
createEmitAndSemanticDiagnosticsBuilderProgram,
|
|
191029
|
-
createEmitHelperFactory,
|
|
191030
|
-
createEmptyExports,
|
|
191031
|
-
createExpressionForJsxElement,
|
|
191032
|
-
createExpressionForJsxFragment,
|
|
191033
|
-
createExpressionForObjectLiteralElementLike,
|
|
191034
|
-
createExpressionForPropertyName,
|
|
191035
|
-
createExpressionFromEntityName,
|
|
191036
|
-
createExternalHelpersImportDeclarationIfNeeded,
|
|
191037
|
-
createFileDiagnostic,
|
|
191038
|
-
createFileDiagnosticFromMessageChain,
|
|
191039
|
-
createForOfBindingStatement,
|
|
191040
|
-
createGetCanonicalFileName,
|
|
191041
|
-
createGetSourceFile,
|
|
191042
|
-
createGetSymbolAccessibilityDiagnosticForNode,
|
|
191043
|
-
createGetSymbolAccessibilityDiagnosticForNodeName,
|
|
191044
|
-
createGetSymbolWalker,
|
|
191045
|
-
createIncrementalCompilerHost,
|
|
191046
|
-
createIncrementalProgram,
|
|
191047
|
-
createInputFiles,
|
|
191048
|
-
createInputFilesWithFilePaths,
|
|
191049
|
-
createInputFilesWithFileTexts,
|
|
191050
|
-
createJsxFactoryExpression,
|
|
191051
|
-
createLanguageService,
|
|
191052
|
-
createLanguageServiceSourceFile,
|
|
191053
|
-
createMemberAccessForPropertyName,
|
|
191054
|
-
createModeAwareCache,
|
|
191055
|
-
createModeAwareCacheKey,
|
|
191056
|
-
createModuleNotFoundChain,
|
|
191057
|
-
createModuleResolutionCache,
|
|
191058
|
-
createModuleResolutionLoader,
|
|
191059
|
-
createModuleResolutionLoaderUsingGlobalCache,
|
|
191060
|
-
createModuleSpecifierResolutionHost,
|
|
191061
|
-
createMultiMap,
|
|
191062
|
-
createNodeConverters,
|
|
191063
|
-
createNodeFactory,
|
|
191064
|
-
createOptionNameMap,
|
|
191065
|
-
createOverload,
|
|
191066
|
-
createPackageJsonImportFilter,
|
|
191067
|
-
createPackageJsonInfo,
|
|
191068
|
-
createParenthesizerRules,
|
|
191069
|
-
createPatternMatcher,
|
|
191070
|
-
createPrependNodes,
|
|
191071
|
-
createPrinter,
|
|
191072
|
-
createPrinterWithDefaults,
|
|
191073
|
-
createPrinterWithRemoveComments,
|
|
191074
|
-
createPrinterWithRemoveCommentsNeverAsciiEscape,
|
|
191075
|
-
createPrinterWithRemoveCommentsOmitTrailingSemicolon,
|
|
191076
|
-
createProgram,
|
|
191077
|
-
createProgramHost,
|
|
191078
|
-
createPropertyNameNodeForIdentifierOrLiteral,
|
|
191079
|
-
createQueue,
|
|
191080
|
-
createRange,
|
|
191081
|
-
createRedirectedBuilderProgram,
|
|
191082
|
-
createResolutionCache,
|
|
191083
|
-
createRuntimeTypeSerializer,
|
|
191084
|
-
createScanner,
|
|
191085
|
-
createSemanticDiagnosticsBuilderProgram,
|
|
191086
|
-
createSet,
|
|
191087
|
-
createSolutionBuilder,
|
|
191088
|
-
createSolutionBuilderHost,
|
|
191089
|
-
createSolutionBuilderWithWatch,
|
|
191090
|
-
createSolutionBuilderWithWatchHost,
|
|
191091
|
-
createSortedArray,
|
|
191092
|
-
createSourceFile,
|
|
191093
|
-
createSourceMapGenerator,
|
|
191094
|
-
createSourceMapSource,
|
|
191095
|
-
createSuperAccessVariableStatement,
|
|
191096
|
-
createSymbolTable,
|
|
191097
|
-
createSymlinkCache,
|
|
191098
|
-
createSystemWatchFunctions,
|
|
191099
|
-
createTextChange,
|
|
191100
|
-
createTextChangeFromStartLength,
|
|
191101
|
-
createTextChangeRange,
|
|
191102
|
-
createTextRangeFromNode,
|
|
191103
|
-
createTextRangeFromSpan,
|
|
191104
|
-
createTextSpan,
|
|
191105
|
-
createTextSpanFromBounds,
|
|
191106
|
-
createTextSpanFromNode,
|
|
191107
|
-
createTextSpanFromRange,
|
|
191108
|
-
createTextSpanFromStringLiteralLikeContent,
|
|
191109
|
-
createTextWriter,
|
|
191110
|
-
createTokenRange,
|
|
191111
|
-
createTypeChecker,
|
|
191112
|
-
createTypeReferenceDirectiveResolutionCache,
|
|
191113
|
-
createTypeReferenceResolutionLoader,
|
|
191114
|
-
createUnparsedSourceFile,
|
|
191115
|
-
createWatchCompilerHost,
|
|
191116
|
-
createWatchCompilerHostOfConfigFile,
|
|
191117
|
-
createWatchCompilerHostOfFilesAndCompilerOptions,
|
|
191118
|
-
createWatchFactory,
|
|
191119
|
-
createWatchHost,
|
|
191120
|
-
createWatchProgram,
|
|
191121
|
-
createWatchStatusReporter,
|
|
191122
|
-
createWriteFileMeasuringIO,
|
|
191123
|
-
declarationNameToString,
|
|
191124
|
-
decodeMappings,
|
|
191125
|
-
decodedTextSpanIntersectsWith,
|
|
191126
|
-
decorateHelper,
|
|
191127
|
-
deduplicate,
|
|
191128
|
-
defaultIncludeSpec,
|
|
191129
|
-
defaultInitCompilerOptions,
|
|
191130
|
-
defaultMaximumTruncationLength,
|
|
191131
|
-
detectSortCaseSensitivity,
|
|
191132
|
-
diagnosticCategoryName,
|
|
191133
|
-
diagnosticToString,
|
|
191134
|
-
directoryProbablyExists,
|
|
191135
|
-
directorySeparator,
|
|
191136
|
-
displayPart,
|
|
191137
|
-
displayPartsToString,
|
|
191138
|
-
disposeEmitNodes,
|
|
191139
|
-
disposeResourcesHelper,
|
|
191140
|
-
documentSpansEqual,
|
|
191141
|
-
dumpTracingLegend,
|
|
191142
|
-
elementAt,
|
|
191143
|
-
elideNodes,
|
|
191144
|
-
emitComments,
|
|
191145
|
-
emitDetachedComments,
|
|
191146
|
-
emitFiles,
|
|
191147
|
-
emitFilesAndReportErrors,
|
|
191148
|
-
emitFilesAndReportErrorsAndGetExitStatus,
|
|
191149
|
-
emitModuleKindIsNonNodeESM,
|
|
191150
|
-
emitNewLineBeforeLeadingCommentOfPosition,
|
|
191151
|
-
emitNewLineBeforeLeadingComments,
|
|
191152
|
-
emitNewLineBeforeLeadingCommentsOfPosition,
|
|
191153
|
-
emitSkippedWithNoDiagnostics,
|
|
191154
|
-
emitUsingBuildInfo,
|
|
191155
|
-
emptyArray,
|
|
191156
|
-
emptyFileSystemEntries,
|
|
191157
|
-
emptyMap,
|
|
191158
|
-
emptyOptions,
|
|
191159
|
-
emptySet,
|
|
191160
|
-
endsWith,
|
|
191161
|
-
ensurePathIsNonModuleName,
|
|
191162
|
-
ensureScriptKind,
|
|
191163
|
-
ensureTrailingDirectorySeparator,
|
|
191164
|
-
entityNameToString,
|
|
191165
|
-
enumerateInsertsAndDeletes,
|
|
191166
|
-
equalOwnProperties,
|
|
191167
|
-
equateStringsCaseInsensitive,
|
|
191168
|
-
equateStringsCaseSensitive,
|
|
191169
|
-
equateValues,
|
|
191170
|
-
esDecorateHelper,
|
|
191171
|
-
escapeJsxAttributeString,
|
|
191172
|
-
escapeLeadingUnderscores,
|
|
191173
|
-
escapeNonAsciiString,
|
|
191174
|
-
escapeSnippetText,
|
|
191175
|
-
escapeString,
|
|
191176
|
-
escapeTemplateSubstitution,
|
|
191177
|
-
every,
|
|
191178
|
-
expandPreOrPostfixIncrementOrDecrementExpression,
|
|
191179
|
-
explainFiles,
|
|
191180
|
-
explainIfFileIsRedirectAndImpliedFormat,
|
|
191181
|
-
exportAssignmentIsAlias,
|
|
191182
|
-
exportStarHelper,
|
|
191183
|
-
expressionResultIsUnused,
|
|
191184
|
-
extend,
|
|
191185
|
-
extendsHelper,
|
|
191186
|
-
extensionFromPath,
|
|
191187
|
-
extensionIsTS,
|
|
191188
|
-
extensionsNotSupportingExtensionlessResolution,
|
|
191189
|
-
externalHelpersModuleNameText,
|
|
191190
|
-
factory,
|
|
191191
|
-
fileExtensionIs,
|
|
191192
|
-
fileExtensionIsOneOf,
|
|
191193
|
-
fileIncludeReasonToDiagnostics,
|
|
191194
|
-
fileShouldUseJavaScriptRequire,
|
|
191195
|
-
filter,
|
|
191196
|
-
filterMutate,
|
|
191197
|
-
filterSemanticDiagnostics,
|
|
191198
|
-
find,
|
|
191199
|
-
findAncestor,
|
|
191200
|
-
findBestPatternMatch,
|
|
191201
|
-
findChildOfKind,
|
|
191202
|
-
findComputedPropertyNameCacheAssignment,
|
|
191203
|
-
findConfigFile,
|
|
191204
|
-
findContainingList,
|
|
191205
|
-
findDiagnosticForNode,
|
|
191206
|
-
findFirstNonJsxWhitespaceToken,
|
|
191207
|
-
findIndex,
|
|
191208
|
-
findLast,
|
|
191209
|
-
findLastIndex,
|
|
191210
|
-
findListItemInfo,
|
|
191211
|
-
findMap,
|
|
191212
|
-
findModifier,
|
|
191213
|
-
findNextToken,
|
|
191214
|
-
findPackageJson,
|
|
191215
|
-
findPackageJsons,
|
|
191216
|
-
findPrecedingMatchingToken,
|
|
191217
|
-
findPrecedingToken,
|
|
191218
|
-
findSuperStatementIndexPath,
|
|
191219
|
-
findTokenOnLeftOfPosition,
|
|
191220
|
-
findUseStrictPrologue,
|
|
191221
|
-
first,
|
|
191222
|
-
firstDefined,
|
|
191223
|
-
firstDefinedIterator,
|
|
191224
|
-
firstIterator,
|
|
191225
|
-
firstOrOnly,
|
|
191226
|
-
firstOrUndefined,
|
|
191227
|
-
firstOrUndefinedIterator,
|
|
191228
|
-
fixupCompilerOptions,
|
|
191229
|
-
flatMap,
|
|
191230
|
-
flatMapIterator,
|
|
191231
|
-
flatMapToMutable,
|
|
191232
|
-
flatten,
|
|
191233
|
-
flattenCommaList,
|
|
191234
|
-
flattenDestructuringAssignment,
|
|
191235
|
-
flattenDestructuringBinding,
|
|
191236
|
-
flattenDiagnosticMessageText,
|
|
191237
|
-
forEach,
|
|
191238
|
-
forEachAncestor,
|
|
191239
|
-
forEachAncestorDirectory,
|
|
191240
|
-
forEachChild,
|
|
191241
|
-
forEachChildRecursively,
|
|
191242
|
-
forEachEmittedFile,
|
|
191243
|
-
forEachEnclosingBlockScopeContainer,
|
|
191244
|
-
forEachEntry,
|
|
191245
|
-
forEachExternalModuleToImportFrom,
|
|
191246
|
-
forEachImportClauseDeclaration,
|
|
191247
|
-
forEachKey,
|
|
191248
|
-
forEachLeadingCommentRange,
|
|
191249
|
-
forEachNameInAccessChainWalkingLeft,
|
|
191250
|
-
forEachPropertyAssignment,
|
|
191251
|
-
forEachResolvedProjectReference,
|
|
191252
|
-
forEachReturnStatement,
|
|
191253
|
-
forEachRight,
|
|
191254
|
-
forEachTrailingCommentRange,
|
|
191255
|
-
forEachTsConfigPropArray,
|
|
191256
|
-
forEachUnique,
|
|
191257
|
-
forEachYieldExpression,
|
|
191258
|
-
forSomeAncestorDirectory,
|
|
191259
|
-
formatColorAndReset,
|
|
191260
|
-
formatDiagnostic,
|
|
191261
|
-
formatDiagnostics,
|
|
191262
|
-
formatDiagnosticsWithColorAndContext,
|
|
191263
|
-
formatGeneratedName,
|
|
191264
|
-
formatGeneratedNamePart,
|
|
191265
|
-
formatLocation,
|
|
191266
|
-
formatMessage,
|
|
191267
|
-
formatStringFromArgs,
|
|
191268
|
-
formatting,
|
|
191269
|
-
fullTripleSlashAMDReferencePathRegEx,
|
|
191270
|
-
fullTripleSlashReferencePathRegEx,
|
|
191271
|
-
generateDjb2Hash,
|
|
191272
|
-
generateTSConfig,
|
|
191273
|
-
generatorHelper,
|
|
191274
|
-
getAdjustedReferenceLocation,
|
|
191275
|
-
getAdjustedRenameLocation,
|
|
191276
|
-
getAliasDeclarationFromName,
|
|
191277
|
-
getAllAccessorDeclarations,
|
|
191278
|
-
getAllDecoratorsOfClass,
|
|
191279
|
-
getAllDecoratorsOfClassElement,
|
|
191280
|
-
getAllJSDocTags,
|
|
191281
|
-
getAllJSDocTagsOfKind,
|
|
191282
|
-
getAllKeys,
|
|
191283
|
-
getAllProjectOutputs,
|
|
191284
|
-
getAllSuperTypeNodes,
|
|
191285
|
-
getAllUnscopedEmitHelpers,
|
|
191286
|
-
getAllowJSCompilerOption,
|
|
191287
|
-
getAllowSyntheticDefaultImports,
|
|
191288
|
-
getAncestor,
|
|
191289
|
-
getAnyExtensionFromPath,
|
|
191290
|
-
getAreDeclarationMapsEnabled,
|
|
191291
|
-
getAssignedExpandoInitializer,
|
|
191292
|
-
getAssignedName,
|
|
191293
|
-
getAssignedNameOfIdentifier,
|
|
191294
|
-
getAssignmentDeclarationKind,
|
|
191295
|
-
getAssignmentDeclarationPropertyAccessKind,
|
|
191296
|
-
getAssignmentTargetKind,
|
|
191297
|
-
getAutomaticTypeDirectiveNames,
|
|
191298
|
-
getBaseFileName,
|
|
191299
|
-
getBinaryOperatorPrecedence,
|
|
191300
|
-
getBuildInfo,
|
|
191301
|
-
getBuildInfoFileVersionMap,
|
|
191302
|
-
getBuildInfoText,
|
|
191303
|
-
getBuildOrderFromAnyBuildOrder,
|
|
191304
|
-
getBuilderCreationParameters,
|
|
191305
|
-
getBuilderFileEmit,
|
|
191306
|
-
getCheckFlags,
|
|
191307
|
-
getClassExtendsHeritageElement,
|
|
191308
|
-
getClassLikeDeclarationOfSymbol,
|
|
191309
|
-
getCombinedLocalAndExportSymbolFlags,
|
|
191310
|
-
getCombinedModifierFlags,
|
|
191311
|
-
getCombinedNodeFlags,
|
|
191312
|
-
getCombinedNodeFlagsAlwaysIncludeJSDoc,
|
|
191313
|
-
getCommentRange,
|
|
191314
|
-
getCommonSourceDirectory,
|
|
191315
|
-
getCommonSourceDirectoryOfConfig,
|
|
191316
|
-
getCompilerOptionValue,
|
|
191317
|
-
getCompilerOptionsDiffValue,
|
|
191318
|
-
getConditions,
|
|
191319
|
-
getConfigFileParsingDiagnostics,
|
|
191320
|
-
getConstantValue,
|
|
191321
|
-
getContainerFlags,
|
|
191322
|
-
getContainerNode,
|
|
191323
|
-
getContainingClass,
|
|
191324
|
-
getContainingClassExcludingClassDecorators,
|
|
191325
|
-
getContainingClassStaticBlock,
|
|
191326
|
-
getContainingFunction,
|
|
191327
|
-
getContainingFunctionDeclaration,
|
|
191328
|
-
getContainingFunctionOrClassStaticBlock,
|
|
191329
|
-
getContainingNodeArray,
|
|
191330
|
-
getContainingObjectLiteralElement,
|
|
191331
|
-
getContextualTypeFromParent,
|
|
191332
|
-
getContextualTypeFromParentOrAncestorTypeNode,
|
|
191333
|
-
getCurrentTime,
|
|
191334
|
-
getDeclarationDiagnostics,
|
|
191335
|
-
getDeclarationEmitExtensionForPath,
|
|
191336
|
-
getDeclarationEmitOutputFilePath,
|
|
191337
|
-
getDeclarationEmitOutputFilePathWorker,
|
|
191338
|
-
getDeclarationFileExtension,
|
|
191339
|
-
getDeclarationFromName,
|
|
191340
|
-
getDeclarationModifierFlagsFromSymbol,
|
|
191341
|
-
getDeclarationOfKind,
|
|
191342
|
-
getDeclarationsOfKind,
|
|
191343
|
-
getDeclaredExpandoInitializer,
|
|
191344
|
-
getDecorators,
|
|
191345
|
-
getDefaultCompilerOptions,
|
|
191346
|
-
getDefaultExportInfoWorker,
|
|
191347
|
-
getDefaultFormatCodeSettings,
|
|
191348
|
-
getDefaultLibFileName,
|
|
191349
|
-
getDefaultLibFilePath,
|
|
191350
|
-
getDefaultLikeExportInfo,
|
|
191351
|
-
getDiagnosticText,
|
|
191352
|
-
getDiagnosticsWithinSpan,
|
|
191353
|
-
getDirectoryPath,
|
|
191354
|
-
getDirectoryToWatchFailedLookupLocation,
|
|
191355
|
-
getDirectoryToWatchFailedLookupLocationFromTypeRoot,
|
|
191356
|
-
getDocumentPositionMapper,
|
|
191357
|
-
getDocumentSpansEqualityComparer,
|
|
191358
|
-
getESModuleInterop,
|
|
191359
|
-
getEditsForFileRename,
|
|
191360
|
-
getEffectiveBaseTypeNode,
|
|
191361
|
-
getEffectiveConstraintOfTypeParameter,
|
|
191362
|
-
getEffectiveContainerForJSDocTemplateTag,
|
|
191363
|
-
getEffectiveImplementsTypeNodes,
|
|
191364
|
-
getEffectiveInitializer,
|
|
191365
|
-
getEffectiveJSDocHost,
|
|
191366
|
-
getEffectiveModifierFlags,
|
|
191367
|
-
getEffectiveModifierFlagsAlwaysIncludeJSDoc,
|
|
191368
|
-
getEffectiveModifierFlagsNoCache,
|
|
191369
|
-
getEffectiveReturnTypeNode,
|
|
191370
|
-
getEffectiveSetAccessorTypeAnnotationNode,
|
|
191371
|
-
getEffectiveTypeAnnotationNode,
|
|
191372
|
-
getEffectiveTypeParameterDeclarations,
|
|
191373
|
-
getEffectiveTypeRoots,
|
|
191374
|
-
getElementOrPropertyAccessArgumentExpressionOrName,
|
|
191375
|
-
getElementOrPropertyAccessName,
|
|
191376
|
-
getElementsOfBindingOrAssignmentPattern,
|
|
191377
|
-
getEmitDeclarations,
|
|
191378
|
-
getEmitFlags,
|
|
191379
|
-
getEmitHelpers,
|
|
191380
|
-
getEmitModuleDetectionKind,
|
|
191381
|
-
getEmitModuleKind,
|
|
191382
|
-
getEmitModuleResolutionKind,
|
|
191383
|
-
getEmitScriptTarget,
|
|
191384
|
-
getEmitStandardClassFields,
|
|
191385
|
-
getEnclosingBlockScopeContainer,
|
|
191386
|
-
getEnclosingContainer,
|
|
191387
|
-
getEncodedSemanticClassifications,
|
|
191388
|
-
getEncodedSyntacticClassifications,
|
|
191389
|
-
getEndLinePosition,
|
|
191390
|
-
getEntityNameFromTypeNode,
|
|
191391
|
-
getEntrypointsFromPackageJsonInfo,
|
|
191392
|
-
getErrorCountForSummary,
|
|
191393
|
-
getErrorSpanForNode,
|
|
191394
|
-
getErrorSummaryText,
|
|
191395
|
-
getEscapedTextOfIdentifierOrLiteral,
|
|
191396
|
-
getEscapedTextOfJsxAttributeName,
|
|
191397
|
-
getEscapedTextOfJsxNamespacedName,
|
|
191398
|
-
getExpandoInitializer,
|
|
191399
|
-
getExportAssignmentExpression,
|
|
191400
|
-
getExportInfoMap,
|
|
191401
|
-
getExportNeedsImportStarHelper,
|
|
191402
|
-
getExpressionAssociativity,
|
|
191403
|
-
getExpressionPrecedence,
|
|
191404
|
-
getExternalHelpersModuleName,
|
|
191405
|
-
getExternalModuleImportEqualsDeclarationExpression,
|
|
191406
|
-
getExternalModuleName,
|
|
191407
|
-
getExternalModuleNameFromDeclaration,
|
|
191408
|
-
getExternalModuleNameFromPath,
|
|
191409
|
-
getExternalModuleNameLiteral,
|
|
191410
|
-
getExternalModuleRequireArgument,
|
|
191411
|
-
getFallbackOptions,
|
|
191412
|
-
getFileEmitOutput,
|
|
191413
|
-
getFileMatcherPatterns,
|
|
191414
|
-
getFileNamesFromConfigSpecs,
|
|
191415
|
-
getFileWatcherEventKind,
|
|
191416
|
-
getFilesInErrorForSummary,
|
|
191417
|
-
getFirstConstructorWithBody,
|
|
191418
|
-
getFirstIdentifier,
|
|
191419
|
-
getFirstNonSpaceCharacterPosition,
|
|
191420
|
-
getFirstProjectOutput,
|
|
191421
|
-
getFixableErrorSpanExpression,
|
|
191422
|
-
getFormatCodeSettingsForWriting,
|
|
191423
|
-
getFullWidth,
|
|
191424
|
-
getFunctionFlags,
|
|
191425
|
-
getHeritageClause,
|
|
191426
|
-
getHostSignatureFromJSDoc,
|
|
191427
|
-
getIdentifierAutoGenerate,
|
|
191428
|
-
getIdentifierGeneratedImportReference,
|
|
191429
|
-
getIdentifierTypeArguments,
|
|
191430
|
-
getImmediatelyInvokedFunctionExpression,
|
|
191431
|
-
getImpliedNodeFormatForFile,
|
|
191432
|
-
getImpliedNodeFormatForFileWorker,
|
|
191433
|
-
getImportNeedsImportDefaultHelper,
|
|
191434
|
-
getImportNeedsImportStarHelper,
|
|
191435
|
-
getIndentSize,
|
|
191436
|
-
getIndentString,
|
|
191437
|
-
getInferredLibraryNameResolveFrom,
|
|
191438
|
-
getInitializedVariables,
|
|
191439
|
-
getInitializerOfBinaryExpression,
|
|
191440
|
-
getInitializerOfBindingOrAssignmentElement,
|
|
191441
|
-
getInterfaceBaseTypeNodes,
|
|
191442
|
-
getInternalEmitFlags,
|
|
191443
|
-
getInvokedExpression,
|
|
191444
|
-
getIsolatedModules,
|
|
191445
|
-
getJSDocAugmentsTag,
|
|
191446
|
-
getJSDocClassTag,
|
|
191447
|
-
getJSDocCommentRanges,
|
|
191448
|
-
getJSDocCommentsAndTags,
|
|
191449
|
-
getJSDocDeprecatedTag,
|
|
191450
|
-
getJSDocDeprecatedTagNoCache,
|
|
191451
|
-
getJSDocEnumTag,
|
|
191452
|
-
getJSDocHost,
|
|
191453
|
-
getJSDocImplementsTags,
|
|
191454
|
-
getJSDocOverloadTags,
|
|
191455
|
-
getJSDocOverrideTagNoCache,
|
|
191456
|
-
getJSDocParameterTags,
|
|
191457
|
-
getJSDocParameterTagsNoCache,
|
|
191458
|
-
getJSDocPrivateTag,
|
|
191459
|
-
getJSDocPrivateTagNoCache,
|
|
191460
|
-
getJSDocProtectedTag,
|
|
191461
|
-
getJSDocProtectedTagNoCache,
|
|
191462
|
-
getJSDocPublicTag,
|
|
191463
|
-
getJSDocPublicTagNoCache,
|
|
191464
|
-
getJSDocReadonlyTag,
|
|
191465
|
-
getJSDocReadonlyTagNoCache,
|
|
191466
|
-
getJSDocReturnTag,
|
|
191467
|
-
getJSDocReturnType,
|
|
191468
|
-
getJSDocRoot,
|
|
191469
|
-
getJSDocSatisfiesExpressionType,
|
|
191470
|
-
getJSDocSatisfiesTag,
|
|
191471
|
-
getJSDocTags,
|
|
191472
|
-
getJSDocTagsNoCache,
|
|
191473
|
-
getJSDocTemplateTag,
|
|
191474
|
-
getJSDocThisTag,
|
|
191475
|
-
getJSDocType,
|
|
191476
|
-
getJSDocTypeAliasName,
|
|
191477
|
-
getJSDocTypeAssertionType,
|
|
191478
|
-
getJSDocTypeParameterDeclarations,
|
|
191479
|
-
getJSDocTypeParameterTags,
|
|
191480
|
-
getJSDocTypeParameterTagsNoCache,
|
|
191481
|
-
getJSDocTypeTag,
|
|
191482
|
-
getJSXImplicitImportBase,
|
|
191483
|
-
getJSXRuntimeImport,
|
|
191484
|
-
getJSXTransformEnabled,
|
|
191485
|
-
getKeyForCompilerOptions,
|
|
191486
|
-
getLanguageVariant,
|
|
191487
|
-
getLastChild,
|
|
191488
|
-
getLeadingCommentRanges,
|
|
191489
|
-
getLeadingCommentRangesOfNode,
|
|
191490
|
-
getLeftmostAccessExpression,
|
|
191491
|
-
getLeftmostExpression,
|
|
191492
|
-
getLibraryNameFromLibFileName,
|
|
191493
|
-
getLineAndCharacterOfPosition,
|
|
191494
|
-
getLineInfo,
|
|
191495
|
-
getLineOfLocalPosition,
|
|
191496
|
-
getLineOfLocalPositionFromLineMap,
|
|
191497
|
-
getLineStartPositionForPosition,
|
|
191498
|
-
getLineStarts,
|
|
191499
|
-
getLinesBetweenPositionAndNextNonWhitespaceCharacter,
|
|
191500
|
-
getLinesBetweenPositionAndPrecedingNonWhitespaceCharacter,
|
|
191501
|
-
getLinesBetweenPositions,
|
|
191502
|
-
getLinesBetweenRangeEndAndRangeStart,
|
|
191503
|
-
getLinesBetweenRangeEndPositions,
|
|
191504
|
-
getLiteralText,
|
|
191505
|
-
getLocalNameForExternalImport,
|
|
191506
|
-
getLocalSymbolForExportDefault,
|
|
191507
|
-
getLocaleSpecificMessage,
|
|
191508
|
-
getLocaleTimeString,
|
|
191509
|
-
getMappedContextSpan,
|
|
191510
|
-
getMappedDocumentSpan,
|
|
191511
|
-
getMappedLocation,
|
|
191512
|
-
getMatchedFileSpec,
|
|
191513
|
-
getMatchedIncludeSpec,
|
|
191514
|
-
getMeaningFromDeclaration,
|
|
191515
|
-
getMeaningFromLocation,
|
|
191516
|
-
getMembersOfDeclaration,
|
|
191517
|
-
getModeForFileReference,
|
|
191518
|
-
getModeForResolutionAtIndex,
|
|
191519
|
-
getModeForUsageLocation,
|
|
191520
|
-
getModifiedTime,
|
|
191521
|
-
getModifiers,
|
|
191522
|
-
getModuleInstanceState,
|
|
191523
|
-
getModuleNameStringLiteralAt,
|
|
191524
|
-
getModuleSpecifierEndingPreference,
|
|
191525
|
-
getModuleSpecifierResolverHost,
|
|
191526
|
-
getNameForExportedSymbol,
|
|
191527
|
-
getNameFromImportAttribute,
|
|
191528
|
-
getNameFromIndexInfo,
|
|
191529
|
-
getNameFromPropertyName,
|
|
191530
|
-
getNameOfAccessExpression,
|
|
191531
|
-
getNameOfCompilerOptionValue,
|
|
191532
|
-
getNameOfDeclaration,
|
|
191533
|
-
getNameOfExpando,
|
|
191534
|
-
getNameOfJSDocTypedef,
|
|
191535
|
-
getNameOrArgument,
|
|
191536
|
-
getNameTable,
|
|
191537
|
-
getNamesForExportedSymbol,
|
|
191538
|
-
getNamespaceDeclarationNode,
|
|
191539
|
-
getNewLineCharacter,
|
|
191540
|
-
getNewLineKind,
|
|
191541
|
-
getNewLineOrDefaultFromHost,
|
|
191542
|
-
getNewTargetContainer,
|
|
191543
|
-
getNextJSDocCommentLocation,
|
|
191544
|
-
getNodeForGeneratedName,
|
|
191545
|
-
getNodeId,
|
|
191546
|
-
getNodeKind,
|
|
191547
|
-
getNodeModifiers,
|
|
191548
|
-
getNodeModulePathParts,
|
|
191549
|
-
getNonAssignedNameOfDeclaration,
|
|
191550
|
-
getNonAssignmentOperatorForCompoundAssignment,
|
|
191551
|
-
getNonAugmentationDeclaration,
|
|
191552
|
-
getNonDecoratorTokenPosOfNode,
|
|
191553
|
-
getNormalizedAbsolutePath,
|
|
191554
|
-
getNormalizedAbsolutePathWithoutRoot,
|
|
191555
|
-
getNormalizedPathComponents,
|
|
191556
|
-
getObjectFlags,
|
|
191557
|
-
getOperator,
|
|
191558
|
-
getOperatorAssociativity,
|
|
191559
|
-
getOperatorPrecedence,
|
|
191560
|
-
getOptionFromName,
|
|
191561
|
-
getOptionsForLibraryResolution,
|
|
191562
|
-
getOptionsNameMap,
|
|
191563
|
-
getOrCreateEmitNode,
|
|
191564
|
-
getOrCreateExternalHelpersModuleNameIfNeeded,
|
|
191565
|
-
getOrUpdate,
|
|
191566
|
-
getOriginalNode,
|
|
191567
|
-
getOriginalNodeId,
|
|
191568
|
-
getOriginalSourceFile,
|
|
191569
|
-
getOutputDeclarationFileName,
|
|
191570
|
-
getOutputDeclarationFileNameWorker,
|
|
191571
|
-
getOutputExtension,
|
|
191572
|
-
getOutputFileNames,
|
|
191573
|
-
getOutputJSFileNameWorker,
|
|
191574
|
-
getOutputPathsFor,
|
|
191575
|
-
getOutputPathsForBundle,
|
|
191576
|
-
getOwnEmitOutputFilePath,
|
|
191577
|
-
getOwnKeys,
|
|
191578
|
-
getOwnValues,
|
|
191579
|
-
getPackageJsonInfo,
|
|
191580
|
-
getPackageJsonTypesVersionsPaths,
|
|
191581
|
-
getPackageJsonsVisibleToFile,
|
|
191582
|
-
getPackageNameFromTypesPackageName,
|
|
191583
|
-
getPackageScopeForPath,
|
|
191584
|
-
getParameterSymbolFromJSDoc,
|
|
191585
|
-
getParameterTypeNode,
|
|
191586
|
-
getParentNodeInSpan,
|
|
191587
|
-
getParseTreeNode,
|
|
191588
|
-
getParsedCommandLineOfConfigFile,
|
|
191589
|
-
getPathComponents,
|
|
191590
|
-
getPathComponentsRelativeTo,
|
|
191591
|
-
getPathFromPathComponents,
|
|
191592
|
-
getPathUpdater,
|
|
191593
|
-
getPathsBasePath,
|
|
191594
|
-
getPatternFromSpec,
|
|
191595
|
-
getPendingEmitKind,
|
|
191596
|
-
getPositionOfLineAndCharacter,
|
|
191597
|
-
getPossibleGenericSignatures,
|
|
191598
|
-
getPossibleOriginalInputExtensionForExtension,
|
|
191599
|
-
getPossibleTypeArgumentsInfo,
|
|
191600
|
-
getPreEmitDiagnostics,
|
|
191601
|
-
getPrecedingNonSpaceCharacterPosition,
|
|
191602
|
-
getPrivateIdentifier,
|
|
191603
|
-
getProperties,
|
|
191604
|
-
getProperty,
|
|
191605
|
-
getPropertyArrayElementValue,
|
|
191606
|
-
getPropertyAssignmentAliasLikeExpression,
|
|
191607
|
-
getPropertyNameForPropertyNameNode,
|
|
191608
|
-
getPropertyNameForUniqueESSymbol,
|
|
191609
|
-
getPropertyNameFromType,
|
|
191610
|
-
getPropertyNameOfBindingOrAssignmentElement,
|
|
191611
|
-
getPropertySymbolFromBindingElement,
|
|
191612
|
-
getPropertySymbolsFromContextualType,
|
|
191613
|
-
getQuoteFromPreference,
|
|
191614
|
-
getQuotePreference,
|
|
191615
|
-
getRangesWhere,
|
|
191616
|
-
getRefactorContextSpan,
|
|
191617
|
-
getReferencedFileLocation,
|
|
191618
|
-
getRegexFromPattern,
|
|
191619
|
-
getRegularExpressionForWildcard,
|
|
191620
|
-
getRegularExpressionsForWildcards,
|
|
191621
|
-
getRelativePathFromDirectory,
|
|
191622
|
-
getRelativePathFromFile,
|
|
191623
|
-
getRelativePathToDirectoryOrUrl,
|
|
191624
|
-
getRenameLocation,
|
|
191625
|
-
getReplacementSpanForContextToken,
|
|
191626
|
-
getResolutionDiagnostic,
|
|
191627
|
-
getResolutionModeOverride,
|
|
191628
|
-
getResolveJsonModule,
|
|
191629
|
-
getResolvePackageJsonExports,
|
|
191630
|
-
getResolvePackageJsonImports,
|
|
191631
|
-
getResolvedExternalModuleName,
|
|
191632
|
-
getRestIndicatorOfBindingOrAssignmentElement,
|
|
191633
|
-
getRestParameterElementType,
|
|
191634
|
-
getRightMostAssignedExpression,
|
|
191635
|
-
getRootDeclaration,
|
|
191636
|
-
getRootDirectoryOfResolutionCache,
|
|
191637
|
-
getRootLength,
|
|
191638
|
-
getRootPathSplitLength,
|
|
191639
|
-
getScriptKind,
|
|
191640
|
-
getScriptKindFromFileName,
|
|
191641
|
-
getScriptTargetFeatures,
|
|
191642
|
-
getSelectedEffectiveModifierFlags,
|
|
191643
|
-
getSelectedSyntacticModifierFlags,
|
|
191644
|
-
getSemanticClassifications,
|
|
191645
|
-
getSemanticJsxChildren,
|
|
191646
|
-
getSetAccessorTypeAnnotationNode,
|
|
191647
|
-
getSetAccessorValueParameter,
|
|
191648
|
-
getSetExternalModuleIndicator,
|
|
191649
|
-
getShebang,
|
|
191650
|
-
getSingleInitializerOfVariableStatementOrPropertyDeclaration,
|
|
191651
|
-
getSingleVariableOfVariableStatement,
|
|
191652
|
-
getSnapshotText,
|
|
191653
|
-
getSnippetElement,
|
|
191654
|
-
getSourceFileOfModule,
|
|
191655
|
-
getSourceFileOfNode,
|
|
191656
|
-
getSourceFilePathInNewDir,
|
|
191657
|
-
getSourceFilePathInNewDirWorker,
|
|
191658
|
-
getSourceFileVersionAsHashFromText,
|
|
191659
|
-
getSourceFilesToEmit,
|
|
191660
|
-
getSourceMapRange,
|
|
191661
|
-
getSourceMapper,
|
|
191662
|
-
getSourceTextOfNodeFromSourceFile,
|
|
191663
|
-
getSpanOfTokenAtPosition,
|
|
191664
|
-
getSpellingSuggestion,
|
|
191665
|
-
getStartPositionOfLine,
|
|
191666
|
-
getStartPositionOfRange,
|
|
191667
|
-
getStartsOnNewLine,
|
|
191668
|
-
getStaticPropertiesAndClassStaticBlock,
|
|
191669
|
-
getStrictOptionValue,
|
|
191670
|
-
getStringComparer,
|
|
191671
|
-
getSubPatternFromSpec,
|
|
191672
|
-
getSuperCallFromStatement,
|
|
191673
|
-
getSuperContainer,
|
|
191674
|
-
getSupportedCodeFixes,
|
|
191675
|
-
getSupportedExtensions,
|
|
191676
|
-
getSupportedExtensionsWithJsonIfResolveJsonModule,
|
|
191677
|
-
getSwitchedType,
|
|
191678
|
-
getSymbolId,
|
|
191679
|
-
getSymbolNameForPrivateIdentifier,
|
|
191680
|
-
getSymbolTarget,
|
|
191681
|
-
getSyntacticClassifications,
|
|
191682
|
-
getSyntacticModifierFlags,
|
|
191683
|
-
getSyntacticModifierFlagsNoCache,
|
|
191684
|
-
getSynthesizedDeepClone,
|
|
191685
|
-
getSynthesizedDeepCloneWithReplacements,
|
|
191686
|
-
getSynthesizedDeepClones,
|
|
191687
|
-
getSynthesizedDeepClonesWithReplacements,
|
|
191688
|
-
getSyntheticLeadingComments,
|
|
191689
|
-
getSyntheticTrailingComments,
|
|
191690
|
-
getTargetLabel,
|
|
191691
|
-
getTargetOfBindingOrAssignmentElement,
|
|
191692
|
-
getTemporaryModuleResolutionState,
|
|
191693
|
-
getTextOfConstantValue,
|
|
191694
|
-
getTextOfIdentifierOrLiteral,
|
|
191695
|
-
getTextOfJSDocComment,
|
|
191696
|
-
getTextOfJsxAttributeName,
|
|
191697
|
-
getTextOfJsxNamespacedName,
|
|
191698
|
-
getTextOfNode,
|
|
191699
|
-
getTextOfNodeFromSourceText,
|
|
191700
|
-
getTextOfPropertyName,
|
|
191701
|
-
getThisContainer,
|
|
191702
|
-
getThisParameter,
|
|
191703
|
-
getTokenAtPosition,
|
|
191704
|
-
getTokenPosOfNode,
|
|
191705
|
-
getTokenSourceMapRange,
|
|
191706
|
-
getTouchingPropertyName,
|
|
191707
|
-
getTouchingToken,
|
|
191708
|
-
getTrailingCommentRanges,
|
|
191709
|
-
getTrailingSemicolonDeferringWriter,
|
|
191710
|
-
getTransformFlagsSubtreeExclusions,
|
|
191711
|
-
getTransformers,
|
|
191712
|
-
getTsBuildInfoEmitOutputFilePath,
|
|
191713
|
-
getTsConfigObjectLiteralExpression,
|
|
191714
|
-
getTsConfigPropArrayElementValue,
|
|
191715
|
-
getTypeAnnotationNode,
|
|
191716
|
-
getTypeArgumentOrTypeParameterList,
|
|
191717
|
-
getTypeKeywordOfTypeOnlyImport,
|
|
191718
|
-
getTypeNode,
|
|
191719
|
-
getTypeNodeIfAccessible,
|
|
191720
|
-
getTypeParameterFromJsDoc,
|
|
191721
|
-
getTypeParameterOwner,
|
|
191722
|
-
getTypesPackageName,
|
|
191723
|
-
getUILocale,
|
|
191724
|
-
getUniqueName,
|
|
191725
|
-
getUniqueSymbolId,
|
|
191726
|
-
getUseDefineForClassFields,
|
|
191727
|
-
getWatchErrorSummaryDiagnosticMessage,
|
|
191728
|
-
getWatchFactory,
|
|
191729
|
-
group,
|
|
191730
|
-
groupBy,
|
|
191731
|
-
guessIndentation,
|
|
191732
|
-
handleNoEmitOptions,
|
|
191733
|
-
hasAbstractModifier,
|
|
191734
|
-
hasAccessorModifier,
|
|
191735
|
-
hasAmbientModifier,
|
|
191736
|
-
hasChangesInResolutions,
|
|
191737
|
-
hasChildOfKind,
|
|
191738
|
-
hasContextSensitiveParameters,
|
|
191739
|
-
hasDecorators,
|
|
191740
|
-
hasDocComment,
|
|
191741
|
-
hasDynamicName,
|
|
191742
|
-
hasEffectiveModifier,
|
|
191743
|
-
hasEffectiveModifiers,
|
|
191744
|
-
hasEffectiveReadonlyModifier,
|
|
191745
|
-
hasExtension,
|
|
191746
|
-
hasIndexSignature,
|
|
191747
|
-
hasInitializer,
|
|
191748
|
-
hasInvalidEscape,
|
|
191749
|
-
hasJSDocNodes,
|
|
191750
|
-
hasJSDocParameterTags,
|
|
191751
|
-
hasJSFileExtension,
|
|
191752
|
-
hasJsonModuleEmitEnabled,
|
|
191753
|
-
hasOnlyExpressionInitializer,
|
|
191754
|
-
hasOverrideModifier,
|
|
191755
|
-
hasPossibleExternalModuleReference,
|
|
191756
|
-
hasProperty,
|
|
191757
|
-
hasPropertyAccessExpressionWithName,
|
|
191758
|
-
hasQuestionToken,
|
|
191759
|
-
hasRecordedExternalHelpers,
|
|
191760
|
-
hasResolutionModeOverride,
|
|
191761
|
-
hasRestParameter,
|
|
191762
|
-
hasScopeMarker,
|
|
191763
|
-
hasStaticModifier,
|
|
191764
|
-
hasSyntacticModifier,
|
|
191765
|
-
hasSyntacticModifiers,
|
|
191766
|
-
hasTSFileExtension,
|
|
191767
|
-
hasTabstop,
|
|
191768
|
-
hasTrailingDirectorySeparator,
|
|
191769
|
-
hasType,
|
|
191770
|
-
hasTypeArguments,
|
|
191771
|
-
hasZeroOrOneAsteriskCharacter,
|
|
191772
|
-
helperString,
|
|
191773
|
-
hostGetCanonicalFileName,
|
|
191774
|
-
hostUsesCaseSensitiveFileNames,
|
|
191775
|
-
idText,
|
|
191776
|
-
identifierIsThisKeyword,
|
|
191777
|
-
identifierToKeywordKind,
|
|
191778
|
-
identity,
|
|
191779
|
-
identitySourceMapConsumer,
|
|
191780
|
-
ignoreSourceNewlines,
|
|
191781
|
-
ignoredPaths,
|
|
191782
|
-
importDefaultHelper,
|
|
191783
|
-
importFromModuleSpecifier,
|
|
191784
|
-
importNameElisionDisabled,
|
|
191785
|
-
importStarHelper,
|
|
191786
|
-
indexOfAnyCharCode,
|
|
191787
|
-
indexOfNode,
|
|
191788
|
-
indicesOf,
|
|
191789
|
-
inferredTypesContainingFile,
|
|
191790
|
-
injectClassNamedEvaluationHelperBlockIfMissing,
|
|
191791
|
-
injectClassThisAssignmentIfMissing,
|
|
191792
|
-
insertImports,
|
|
191793
|
-
insertLeadingStatement,
|
|
191794
|
-
insertSorted,
|
|
191795
|
-
insertStatementAfterCustomPrologue,
|
|
191796
|
-
insertStatementAfterStandardPrologue,
|
|
191797
|
-
insertStatementsAfterCustomPrologue,
|
|
191798
|
-
insertStatementsAfterStandardPrologue,
|
|
191799
|
-
intersperse,
|
|
191800
|
-
intrinsicTagNameToString,
|
|
191801
|
-
introducesArgumentsExoticObject,
|
|
191802
|
-
inverseJsxOptionMap,
|
|
191803
|
-
isAbstractConstructorSymbol,
|
|
191804
|
-
isAbstractModifier,
|
|
191805
|
-
isAccessExpression,
|
|
191806
|
-
isAccessibilityModifier,
|
|
191807
|
-
isAccessor,
|
|
191808
|
-
isAccessorModifier,
|
|
191809
|
-
isAliasSymbolDeclaration,
|
|
191810
|
-
isAliasableExpression,
|
|
191811
|
-
isAmbientModule,
|
|
191812
|
-
isAmbientPropertyDeclaration,
|
|
191813
|
-
isAnonymousFunctionDefinition,
|
|
191814
|
-
isAnyDirectorySeparator,
|
|
191815
|
-
isAnyImportOrBareOrAccessedRequire,
|
|
191816
|
-
isAnyImportOrReExport,
|
|
191817
|
-
isAnyImportSyntax,
|
|
191818
|
-
isAnySupportedFileExtension,
|
|
191819
|
-
isApplicableVersionedTypesKey,
|
|
191820
|
-
isArgumentExpressionOfElementAccess,
|
|
191821
|
-
isArray,
|
|
191822
|
-
isArrayBindingElement,
|
|
191823
|
-
isArrayBindingOrAssignmentElement,
|
|
191824
|
-
isArrayBindingOrAssignmentPattern,
|
|
191825
|
-
isArrayBindingPattern,
|
|
191826
|
-
isArrayLiteralExpression,
|
|
191827
|
-
isArrayLiteralOrObjectLiteralDestructuringPattern,
|
|
191828
|
-
isArrayTypeNode,
|
|
191829
|
-
isArrowFunction,
|
|
191830
|
-
isAsExpression,
|
|
191831
|
-
isAssertClause,
|
|
191832
|
-
isAssertEntry,
|
|
191833
|
-
isAssertionExpression,
|
|
191834
|
-
isAssertsKeyword,
|
|
191835
|
-
isAssignmentDeclaration,
|
|
191836
|
-
isAssignmentExpression,
|
|
191837
|
-
isAssignmentOperator,
|
|
191838
|
-
isAssignmentPattern,
|
|
191839
|
-
isAssignmentTarget,
|
|
191840
|
-
isAsteriskToken,
|
|
191841
|
-
isAsyncFunction,
|
|
191842
|
-
isAsyncModifier,
|
|
191843
|
-
isAutoAccessorPropertyDeclaration,
|
|
191844
|
-
isAwaitExpression,
|
|
191845
|
-
isAwaitKeyword,
|
|
191846
|
-
isBigIntLiteral,
|
|
191847
|
-
isBinaryExpression,
|
|
191848
|
-
isBinaryOperatorToken,
|
|
191849
|
-
isBindableObjectDefinePropertyCall,
|
|
191850
|
-
isBindableStaticAccessExpression,
|
|
191851
|
-
isBindableStaticElementAccessExpression,
|
|
191852
|
-
isBindableStaticNameExpression,
|
|
191853
|
-
isBindingElement,
|
|
191854
|
-
isBindingElementOfBareOrAccessedRequire,
|
|
191855
|
-
isBindingName,
|
|
191856
|
-
isBindingOrAssignmentElement,
|
|
191857
|
-
isBindingOrAssignmentPattern,
|
|
191858
|
-
isBindingPattern,
|
|
191859
|
-
isBlock,
|
|
191860
|
-
isBlockOrCatchScoped,
|
|
191861
|
-
isBlockScope,
|
|
191862
|
-
isBlockScopedContainerTopLevel,
|
|
191863
|
-
isBooleanLiteral,
|
|
191864
|
-
isBreakOrContinueStatement,
|
|
191865
|
-
isBreakStatement,
|
|
191866
|
-
isBuildInfoFile,
|
|
191867
|
-
isBuilderProgram,
|
|
191868
|
-
isBundle,
|
|
191869
|
-
isBundleFileTextLike,
|
|
191870
|
-
isCallChain,
|
|
191871
|
-
isCallExpression,
|
|
191872
|
-
isCallExpressionTarget,
|
|
191873
|
-
isCallLikeExpression,
|
|
191874
|
-
isCallLikeOrFunctionLikeExpression,
|
|
191875
|
-
isCallOrNewExpression,
|
|
191876
|
-
isCallOrNewExpressionTarget,
|
|
191877
|
-
isCallSignatureDeclaration,
|
|
191878
|
-
isCallToHelper,
|
|
191879
|
-
isCaseBlock,
|
|
191880
|
-
isCaseClause,
|
|
191881
|
-
isCaseKeyword,
|
|
191882
|
-
isCaseOrDefaultClause,
|
|
191883
|
-
isCatchClause,
|
|
191884
|
-
isCatchClauseVariableDeclaration,
|
|
191885
|
-
isCatchClauseVariableDeclarationOrBindingElement,
|
|
191886
|
-
isCheckJsEnabledForFile,
|
|
191887
|
-
isChildOfNodeWithKind,
|
|
191888
|
-
isCircularBuildOrder,
|
|
191889
|
-
isClassDeclaration,
|
|
191890
|
-
isClassElement,
|
|
191891
|
-
isClassExpression,
|
|
191892
|
-
isClassInstanceProperty,
|
|
191893
|
-
isClassLike,
|
|
191894
|
-
isClassMemberModifier,
|
|
191895
|
-
isClassNamedEvaluationHelperBlock,
|
|
191896
|
-
isClassOrTypeElement,
|
|
191897
|
-
isClassStaticBlockDeclaration,
|
|
191898
|
-
isClassThisAssignmentBlock,
|
|
191899
|
-
isCollapsedRange,
|
|
191900
|
-
isColonToken,
|
|
191901
|
-
isCommaExpression,
|
|
191902
|
-
isCommaListExpression,
|
|
191903
|
-
isCommaSequence,
|
|
191904
|
-
isCommaToken,
|
|
191905
|
-
isComment,
|
|
191906
|
-
isCommonJsExportPropertyAssignment,
|
|
191907
|
-
isCommonJsExportedExpression,
|
|
191908
|
-
isCompoundAssignment,
|
|
191909
|
-
isComputedNonLiteralName,
|
|
191910
|
-
isComputedPropertyName,
|
|
191911
|
-
isConciseBody,
|
|
191912
|
-
isConditionalExpression,
|
|
191913
|
-
isConditionalTypeNode,
|
|
191914
|
-
isConstTypeReference,
|
|
191915
|
-
isConstructSignatureDeclaration,
|
|
191916
|
-
isConstructorDeclaration,
|
|
191917
|
-
isConstructorTypeNode,
|
|
191918
|
-
isContextualKeyword,
|
|
191919
|
-
isContinueStatement,
|
|
191920
|
-
isCustomPrologue,
|
|
191921
|
-
isDebuggerStatement,
|
|
191922
|
-
isDeclaration,
|
|
191923
|
-
isDeclarationBindingElement,
|
|
191924
|
-
isDeclarationFileName,
|
|
191925
|
-
isDeclarationName,
|
|
191926
|
-
isDeclarationNameOfEnumOrNamespace,
|
|
191927
|
-
isDeclarationReadonly,
|
|
191928
|
-
isDeclarationStatement,
|
|
191929
|
-
isDeclarationWithTypeParameterChildren,
|
|
191930
|
-
isDeclarationWithTypeParameters,
|
|
191931
|
-
isDecorator,
|
|
191932
|
-
isDecoratorTarget,
|
|
191933
|
-
isDefaultClause,
|
|
191934
|
-
isDefaultImport,
|
|
191935
|
-
isDefaultModifier,
|
|
191936
|
-
isDefaultedExpandoInitializer,
|
|
191937
|
-
isDeleteExpression,
|
|
191938
|
-
isDeleteTarget,
|
|
191939
|
-
isDeprecatedDeclaration,
|
|
191940
|
-
isDestructuringAssignment,
|
|
191941
|
-
isDiagnosticWithLocation,
|
|
191942
|
-
isDiskPathRoot,
|
|
191943
|
-
isDoStatement,
|
|
191944
|
-
isDocumentRegistryEntry,
|
|
191945
|
-
isDotDotDotToken,
|
|
191946
|
-
isDottedName,
|
|
191947
|
-
isDynamicName,
|
|
191948
|
-
isESSymbolIdentifier,
|
|
191949
|
-
isEffectiveExternalModule,
|
|
191950
|
-
isEffectiveModuleDeclaration,
|
|
191951
|
-
isEffectiveStrictModeSourceFile,
|
|
191952
|
-
isElementAccessChain,
|
|
191953
|
-
isElementAccessExpression,
|
|
191954
|
-
isEmittedFileOfProgram,
|
|
191955
|
-
isEmptyArrayLiteral,
|
|
191956
|
-
isEmptyBindingElement,
|
|
191957
|
-
isEmptyBindingPattern,
|
|
191958
|
-
isEmptyObjectLiteral,
|
|
191959
|
-
isEmptyStatement,
|
|
191960
|
-
isEmptyStringLiteral,
|
|
191961
|
-
isEntityName,
|
|
191962
|
-
isEntityNameExpression,
|
|
191963
|
-
isEnumConst,
|
|
191964
|
-
isEnumDeclaration,
|
|
191965
|
-
isEnumMember,
|
|
191966
|
-
isEqualityOperatorKind,
|
|
191967
|
-
isEqualsGreaterThanToken,
|
|
191968
|
-
isExclamationToken,
|
|
191969
|
-
isExcludedFile,
|
|
191970
|
-
isExclusivelyTypeOnlyImportOrExport,
|
|
191971
|
-
isExpandoPropertyDeclaration,
|
|
191972
|
-
isExportAssignment,
|
|
191973
|
-
isExportDeclaration,
|
|
191974
|
-
isExportModifier,
|
|
191975
|
-
isExportName,
|
|
191976
|
-
isExportNamespaceAsDefaultDeclaration,
|
|
191977
|
-
isExportOrDefaultModifier,
|
|
191978
|
-
isExportSpecifier,
|
|
191979
|
-
isExportsIdentifier,
|
|
191980
|
-
isExportsOrModuleExportsOrAlias,
|
|
191981
|
-
isExpression,
|
|
191982
|
-
isExpressionNode,
|
|
191983
|
-
isExpressionOfExternalModuleImportEqualsDeclaration,
|
|
191984
|
-
isExpressionOfOptionalChainRoot,
|
|
191985
|
-
isExpressionStatement,
|
|
191986
|
-
isExpressionWithTypeArguments,
|
|
191987
|
-
isExpressionWithTypeArgumentsInClassExtendsClause,
|
|
191988
|
-
isExternalModule,
|
|
191989
|
-
isExternalModuleAugmentation,
|
|
191990
|
-
isExternalModuleImportEqualsDeclaration,
|
|
191991
|
-
isExternalModuleIndicator,
|
|
191992
|
-
isExternalModuleNameRelative,
|
|
191993
|
-
isExternalModuleReference,
|
|
191994
|
-
isExternalModuleSymbol,
|
|
191995
|
-
isExternalOrCommonJsModule,
|
|
191996
|
-
isFileLevelReservedGeneratedIdentifier,
|
|
191997
|
-
isFileLevelUniqueName,
|
|
191998
|
-
isFileProbablyExternalModule,
|
|
191999
|
-
isFirstDeclarationOfSymbolParameter,
|
|
192000
|
-
isFixablePromiseHandler,
|
|
192001
|
-
isForInOrOfStatement,
|
|
192002
|
-
isForInStatement,
|
|
192003
|
-
isForInitializer,
|
|
192004
|
-
isForOfStatement,
|
|
192005
|
-
isForStatement,
|
|
192006
|
-
isFunctionBlock,
|
|
192007
|
-
isFunctionBody,
|
|
192008
|
-
isFunctionDeclaration,
|
|
192009
|
-
isFunctionExpression,
|
|
192010
|
-
isFunctionExpressionOrArrowFunction,
|
|
192011
|
-
isFunctionLike,
|
|
192012
|
-
isFunctionLikeDeclaration,
|
|
192013
|
-
isFunctionLikeKind,
|
|
192014
|
-
isFunctionLikeOrClassStaticBlockDeclaration,
|
|
192015
|
-
isFunctionOrConstructorTypeNode,
|
|
192016
|
-
isFunctionOrModuleBlock,
|
|
192017
|
-
isFunctionSymbol,
|
|
192018
|
-
isFunctionTypeNode,
|
|
192019
|
-
isFutureReservedKeyword,
|
|
192020
|
-
isGeneratedIdentifier,
|
|
192021
|
-
isGeneratedPrivateIdentifier,
|
|
192022
|
-
isGetAccessor,
|
|
192023
|
-
isGetAccessorDeclaration,
|
|
192024
|
-
isGetOrSetAccessorDeclaration,
|
|
192025
|
-
isGlobalDeclaration,
|
|
192026
|
-
isGlobalScopeAugmentation,
|
|
192027
|
-
isGrammarError,
|
|
192028
|
-
isHeritageClause,
|
|
192029
|
-
isHoistedFunction,
|
|
192030
|
-
isHoistedVariableStatement,
|
|
192031
|
-
isIdentifier,
|
|
192032
|
-
isIdentifierANonContextualKeyword,
|
|
192033
|
-
isIdentifierName,
|
|
192034
|
-
isIdentifierOrThisTypeNode,
|
|
192035
|
-
isIdentifierPart,
|
|
192036
|
-
isIdentifierStart,
|
|
192037
|
-
isIdentifierText,
|
|
192038
|
-
isIdentifierTypePredicate,
|
|
192039
|
-
isIdentifierTypeReference,
|
|
192040
|
-
isIfStatement,
|
|
192041
|
-
isIgnoredFileFromWildCardWatching,
|
|
192042
|
-
isImplicitGlob,
|
|
192043
|
-
isImportAttribute,
|
|
192044
|
-
isImportAttributeName,
|
|
192045
|
-
isImportAttributes,
|
|
192046
|
-
isImportCall,
|
|
192047
|
-
isImportClause,
|
|
192048
|
-
isImportDeclaration,
|
|
192049
|
-
isImportEqualsDeclaration,
|
|
192050
|
-
isImportKeyword,
|
|
192051
|
-
isImportMeta,
|
|
192052
|
-
isImportOrExportSpecifier,
|
|
192053
|
-
isImportOrExportSpecifierName,
|
|
192054
|
-
isImportSpecifier,
|
|
192055
|
-
isImportTypeAssertionContainer,
|
|
192056
|
-
isImportTypeNode,
|
|
192057
|
-
isImportableFile,
|
|
192058
|
-
isInComment,
|
|
192059
|
-
isInCompoundLikeAssignment,
|
|
192060
|
-
isInExpressionContext,
|
|
192061
|
-
isInJSDoc,
|
|
192062
|
-
isInJSFile,
|
|
192063
|
-
isInJSXText,
|
|
192064
|
-
isInJsonFile,
|
|
192065
|
-
isInNonReferenceComment,
|
|
192066
|
-
isInReferenceComment,
|
|
192067
|
-
isInRightSideOfInternalImportEqualsDeclaration,
|
|
192068
|
-
isInString,
|
|
192069
|
-
isInTemplateString,
|
|
192070
|
-
isInTopLevelContext,
|
|
192071
|
-
isInTypeQuery,
|
|
192072
|
-
isIncrementalCompilation,
|
|
192073
|
-
isIndexSignatureDeclaration,
|
|
192074
|
-
isIndexedAccessTypeNode,
|
|
192075
|
-
isInferTypeNode,
|
|
192076
|
-
isInfinityOrNaNString,
|
|
192077
|
-
isInitializedProperty,
|
|
192078
|
-
isInitializedVariable,
|
|
192079
|
-
isInsideJsxElement,
|
|
192080
|
-
isInsideJsxElementOrAttribute,
|
|
192081
|
-
isInsideNodeModules,
|
|
192082
|
-
isInsideTemplateLiteral,
|
|
192083
|
-
isInstanceOfExpression,
|
|
192084
|
-
isInstantiatedModule,
|
|
192085
|
-
isInterfaceDeclaration,
|
|
192086
|
-
isInternalDeclaration,
|
|
192087
|
-
isInternalModuleImportEqualsDeclaration,
|
|
192088
|
-
isInternalName,
|
|
192089
|
-
isIntersectionTypeNode,
|
|
192090
|
-
isIntrinsicJsxName,
|
|
192091
|
-
isIterationStatement,
|
|
192092
|
-
isJSDoc,
|
|
192093
|
-
isJSDocAllType,
|
|
192094
|
-
isJSDocAugmentsTag,
|
|
192095
|
-
isJSDocAuthorTag,
|
|
192096
|
-
isJSDocCallbackTag,
|
|
192097
|
-
isJSDocClassTag,
|
|
192098
|
-
isJSDocCommentContainingNode,
|
|
192099
|
-
isJSDocConstructSignature,
|
|
192100
|
-
isJSDocDeprecatedTag,
|
|
192101
|
-
isJSDocEnumTag,
|
|
192102
|
-
isJSDocFunctionType,
|
|
192103
|
-
isJSDocImplementsTag,
|
|
192104
|
-
isJSDocIndexSignature,
|
|
192105
|
-
isJSDocLikeText,
|
|
192106
|
-
isJSDocLink,
|
|
192107
|
-
isJSDocLinkCode,
|
|
192108
|
-
isJSDocLinkLike,
|
|
192109
|
-
isJSDocLinkPlain,
|
|
192110
|
-
isJSDocMemberName,
|
|
192111
|
-
isJSDocNameReference,
|
|
192112
|
-
isJSDocNamepathType,
|
|
192113
|
-
isJSDocNamespaceBody,
|
|
192114
|
-
isJSDocNode,
|
|
192115
|
-
isJSDocNonNullableType,
|
|
192116
|
-
isJSDocNullableType,
|
|
192117
|
-
isJSDocOptionalParameter,
|
|
192118
|
-
isJSDocOptionalType,
|
|
192119
|
-
isJSDocOverloadTag,
|
|
192120
|
-
isJSDocOverrideTag,
|
|
192121
|
-
isJSDocParameterTag,
|
|
192122
|
-
isJSDocPrivateTag,
|
|
192123
|
-
isJSDocPropertyLikeTag,
|
|
192124
|
-
isJSDocPropertyTag,
|
|
192125
|
-
isJSDocProtectedTag,
|
|
192126
|
-
isJSDocPublicTag,
|
|
192127
|
-
isJSDocReadonlyTag,
|
|
192128
|
-
isJSDocReturnTag,
|
|
192129
|
-
isJSDocSatisfiesExpression,
|
|
192130
|
-
isJSDocSatisfiesTag,
|
|
192131
|
-
isJSDocSeeTag,
|
|
192132
|
-
isJSDocSignature,
|
|
192133
|
-
isJSDocTag,
|
|
192134
|
-
isJSDocTemplateTag,
|
|
192135
|
-
isJSDocThisTag,
|
|
192136
|
-
isJSDocThrowsTag,
|
|
192137
|
-
isJSDocTypeAlias,
|
|
192138
|
-
isJSDocTypeAssertion,
|
|
192139
|
-
isJSDocTypeExpression,
|
|
192140
|
-
isJSDocTypeLiteral,
|
|
192141
|
-
isJSDocTypeTag,
|
|
192142
|
-
isJSDocTypedefTag,
|
|
192143
|
-
isJSDocUnknownTag,
|
|
192144
|
-
isJSDocUnknownType,
|
|
192145
|
-
isJSDocVariadicType,
|
|
192146
|
-
isJSXTagName,
|
|
192147
|
-
isJsonEqual,
|
|
192148
|
-
isJsonSourceFile,
|
|
192149
|
-
isJsxAttribute,
|
|
192150
|
-
isJsxAttributeLike,
|
|
192151
|
-
isJsxAttributeName,
|
|
192152
|
-
isJsxAttributes,
|
|
192153
|
-
isJsxChild,
|
|
192154
|
-
isJsxClosingElement,
|
|
192155
|
-
isJsxClosingFragment,
|
|
192156
|
-
isJsxElement,
|
|
192157
|
-
isJsxExpression,
|
|
192158
|
-
isJsxFragment,
|
|
192159
|
-
isJsxNamespacedName,
|
|
192160
|
-
isJsxOpeningElement,
|
|
192161
|
-
isJsxOpeningFragment,
|
|
192162
|
-
isJsxOpeningLikeElement,
|
|
192163
|
-
isJsxOpeningLikeElementTagName,
|
|
192164
|
-
isJsxSelfClosingElement,
|
|
192165
|
-
isJsxSpreadAttribute,
|
|
192166
|
-
isJsxTagNameExpression,
|
|
192167
|
-
isJsxText,
|
|
192168
|
-
isJumpStatementTarget,
|
|
192169
|
-
isKeyword,
|
|
192170
|
-
isKeywordOrPunctuation,
|
|
192171
|
-
isKnownSymbol,
|
|
192172
|
-
isLabelName,
|
|
192173
|
-
isLabelOfLabeledStatement,
|
|
192174
|
-
isLabeledStatement,
|
|
192175
|
-
isLateVisibilityPaintedStatement,
|
|
192176
|
-
isLeftHandSideExpression,
|
|
192177
|
-
isLeftHandSideOfAssignment,
|
|
192178
|
-
isLet,
|
|
192179
|
-
isLineBreak,
|
|
192180
|
-
isLiteralComputedPropertyDeclarationName,
|
|
192181
|
-
isLiteralExpression,
|
|
192182
|
-
isLiteralExpressionOfObject,
|
|
192183
|
-
isLiteralImportTypeNode,
|
|
192184
|
-
isLiteralKind,
|
|
192185
|
-
isLiteralLikeAccess,
|
|
192186
|
-
isLiteralLikeElementAccess,
|
|
192187
|
-
isLiteralNameOfPropertyDeclarationOrIndexAccess,
|
|
192188
|
-
isLiteralTypeLikeExpression,
|
|
192189
|
-
isLiteralTypeLiteral,
|
|
192190
|
-
isLiteralTypeNode,
|
|
192191
|
-
isLocalName,
|
|
192192
|
-
isLogicalOperator,
|
|
192193
|
-
isLogicalOrCoalescingAssignmentExpression,
|
|
192194
|
-
isLogicalOrCoalescingAssignmentOperator,
|
|
192195
|
-
isLogicalOrCoalescingBinaryExpression,
|
|
192196
|
-
isLogicalOrCoalescingBinaryOperator,
|
|
192197
|
-
isMappedTypeNode,
|
|
192198
|
-
isMemberName,
|
|
192199
|
-
isMetaProperty,
|
|
192200
|
-
isMethodDeclaration,
|
|
192201
|
-
isMethodOrAccessor,
|
|
192202
|
-
isMethodSignature,
|
|
192203
|
-
isMinusToken,
|
|
192204
|
-
isMissingDeclaration,
|
|
192205
|
-
isMissingPackageJsonInfo,
|
|
192206
|
-
isModifier,
|
|
192207
|
-
isModifierKind,
|
|
192208
|
-
isModifierLike,
|
|
192209
|
-
isModuleAugmentationExternal,
|
|
192210
|
-
isModuleBlock,
|
|
192211
|
-
isModuleBody,
|
|
192212
|
-
isModuleDeclaration,
|
|
192213
|
-
isModuleExportsAccessExpression,
|
|
192214
|
-
isModuleIdentifier,
|
|
192215
|
-
isModuleName,
|
|
192216
|
-
isModuleOrEnumDeclaration,
|
|
192217
|
-
isModuleReference,
|
|
192218
|
-
isModuleSpecifierLike,
|
|
192219
|
-
isModuleWithStringLiteralName,
|
|
192220
|
-
isNameOfFunctionDeclaration,
|
|
192221
|
-
isNameOfModuleDeclaration,
|
|
192222
|
-
isNamedClassElement,
|
|
192223
|
-
isNamedDeclaration,
|
|
192224
|
-
isNamedEvaluation,
|
|
192225
|
-
isNamedEvaluationSource,
|
|
192226
|
-
isNamedExportBindings,
|
|
192227
|
-
isNamedExports,
|
|
192228
|
-
isNamedImportBindings,
|
|
192229
|
-
isNamedImports,
|
|
192230
|
-
isNamedImportsOrExports,
|
|
192231
|
-
isNamedTupleMember,
|
|
192232
|
-
isNamespaceBody,
|
|
192233
|
-
isNamespaceExport,
|
|
192234
|
-
isNamespaceExportDeclaration,
|
|
192235
|
-
isNamespaceImport,
|
|
192236
|
-
isNamespaceReexportDeclaration,
|
|
192237
|
-
isNewExpression,
|
|
192238
|
-
isNewExpressionTarget,
|
|
192239
|
-
isNoSubstitutionTemplateLiteral,
|
|
192240
|
-
isNode,
|
|
192241
|
-
isNodeArray,
|
|
192242
|
-
isNodeArrayMultiLine,
|
|
192243
|
-
isNodeDescendantOf,
|
|
192244
|
-
isNodeKind,
|
|
192245
|
-
isNodeLikeSystem,
|
|
192246
|
-
isNodeModulesDirectory,
|
|
192247
|
-
isNodeWithPossibleHoistedDeclaration,
|
|
192248
|
-
isNonContextualKeyword,
|
|
192249
|
-
isNonExportDefaultModifier,
|
|
192250
|
-
isNonGlobalAmbientModule,
|
|
192251
|
-
isNonGlobalDeclaration,
|
|
192252
|
-
isNonNullAccess,
|
|
192253
|
-
isNonNullChain,
|
|
192254
|
-
isNonNullExpression,
|
|
192255
|
-
isNonStaticMethodOrAccessorWithPrivateName,
|
|
192256
|
-
isNotEmittedOrPartiallyEmittedNode,
|
|
192257
|
-
isNotEmittedStatement,
|
|
192258
|
-
isNullishCoalesce,
|
|
192259
|
-
isNumber,
|
|
192260
|
-
isNumericLiteral,
|
|
192261
|
-
isNumericLiteralName,
|
|
192262
|
-
isObjectBindingElementWithoutPropertyName,
|
|
192263
|
-
isObjectBindingOrAssignmentElement,
|
|
192264
|
-
isObjectBindingOrAssignmentPattern,
|
|
192265
|
-
isObjectBindingPattern,
|
|
192266
|
-
isObjectLiteralElement,
|
|
192267
|
-
isObjectLiteralElementLike,
|
|
192268
|
-
isObjectLiteralExpression,
|
|
192269
|
-
isObjectLiteralMethod,
|
|
192270
|
-
isObjectLiteralOrClassExpressionMethodOrAccessor,
|
|
192271
|
-
isObjectTypeDeclaration,
|
|
192272
|
-
isOctalDigit,
|
|
192273
|
-
isOmittedExpression,
|
|
192274
|
-
isOptionalChain,
|
|
192275
|
-
isOptionalChainRoot,
|
|
192276
|
-
isOptionalDeclaration,
|
|
192277
|
-
isOptionalJSDocPropertyLikeTag,
|
|
192278
|
-
isOptionalTypeNode,
|
|
192279
|
-
isOuterExpression,
|
|
192280
|
-
isOutermostOptionalChain,
|
|
192281
|
-
isOverrideModifier,
|
|
192282
|
-
isPackageJsonInfo,
|
|
192283
|
-
isPackedArrayLiteral,
|
|
192284
|
-
isParameter,
|
|
192285
|
-
isParameterDeclaration,
|
|
192286
|
-
isParameterPropertyDeclaration,
|
|
192287
|
-
isParameterPropertyModifier,
|
|
192288
|
-
isParenthesizedExpression,
|
|
192289
|
-
isParenthesizedTypeNode,
|
|
192290
|
-
isParseTreeNode,
|
|
192291
|
-
isPartOfTypeNode,
|
|
192292
|
-
isPartOfTypeQuery,
|
|
192293
|
-
isPartiallyEmittedExpression,
|
|
192294
|
-
isPatternMatch,
|
|
192295
|
-
isPinnedComment,
|
|
192296
|
-
isPlainJsFile,
|
|
192297
|
-
isPlusToken,
|
|
192298
|
-
isPossiblyTypeArgumentPosition,
|
|
192299
|
-
isPostfixUnaryExpression,
|
|
192300
|
-
isPrefixUnaryExpression,
|
|
192301
|
-
isPrivateIdentifier,
|
|
192302
|
-
isPrivateIdentifierClassElementDeclaration,
|
|
192303
|
-
isPrivateIdentifierPropertyAccessExpression,
|
|
192304
|
-
isPrivateIdentifierSymbol,
|
|
192305
|
-
isProgramBundleEmitBuildInfo,
|
|
192306
|
-
isProgramUptoDate,
|
|
192307
|
-
isPrologueDirective,
|
|
192308
|
-
isPropertyAccessChain,
|
|
192309
|
-
isPropertyAccessEntityNameExpression,
|
|
192310
|
-
isPropertyAccessExpression,
|
|
192311
|
-
isPropertyAccessOrQualifiedName,
|
|
192312
|
-
isPropertyAccessOrQualifiedNameOrImportTypeNode,
|
|
192313
|
-
isPropertyAssignment,
|
|
192314
|
-
isPropertyDeclaration,
|
|
192315
|
-
isPropertyName,
|
|
192316
|
-
isPropertyNameLiteral,
|
|
192317
|
-
isPropertySignature,
|
|
192318
|
-
isProtoSetter,
|
|
192319
|
-
isPrototypeAccess,
|
|
192320
|
-
isPrototypePropertyAssignment,
|
|
192321
|
-
isPunctuation,
|
|
192322
|
-
isPushOrUnshiftIdentifier,
|
|
192323
|
-
isQualifiedName,
|
|
192324
|
-
isQuestionDotToken,
|
|
192325
|
-
isQuestionOrExclamationToken,
|
|
192326
|
-
isQuestionOrPlusOrMinusToken,
|
|
192327
|
-
isQuestionToken,
|
|
192328
|
-
isRawSourceMap,
|
|
192329
|
-
isReadonlyKeyword,
|
|
192330
|
-
isReadonlyKeywordOrPlusOrMinusToken,
|
|
192331
|
-
isRecognizedTripleSlashComment,
|
|
192332
|
-
isReferenceFileLocation,
|
|
192333
|
-
isReferencedFile,
|
|
192334
|
-
isRegularExpressionLiteral,
|
|
192335
|
-
isRequireCall,
|
|
192336
|
-
isRequireVariableStatement,
|
|
192337
|
-
isRestParameter,
|
|
192338
|
-
isRestTypeNode,
|
|
192339
|
-
isReturnStatement,
|
|
192340
|
-
isReturnStatementWithFixablePromiseHandler,
|
|
192341
|
-
isRightSideOfAccessExpression,
|
|
192342
|
-
isRightSideOfInstanceofExpression,
|
|
192343
|
-
isRightSideOfPropertyAccess,
|
|
192344
|
-
isRightSideOfQualifiedName,
|
|
192345
|
-
isRightSideOfQualifiedNameOrPropertyAccess,
|
|
192346
|
-
isRightSideOfQualifiedNameOrPropertyAccessOrJSDocMemberName,
|
|
192347
|
-
isRootedDiskPath,
|
|
192348
|
-
isSameEntityName,
|
|
192349
|
-
isSatisfiesExpression,
|
|
192350
|
-
isScopeMarker,
|
|
192351
|
-
isSemicolonClassElement,
|
|
192352
|
-
isSetAccessor,
|
|
192353
|
-
isSetAccessorDeclaration,
|
|
192354
|
-
isShebangTrivia,
|
|
192355
|
-
isShiftOperatorOrHigher,
|
|
192356
|
-
isShorthandAmbientModuleSymbol,
|
|
192357
|
-
isShorthandPropertyAssignment,
|
|
192358
|
-
isSignedNumericLiteral,
|
|
192359
|
-
isSimpleCopiableExpression,
|
|
192360
|
-
isSimpleInlineableExpression,
|
|
192361
|
-
isSimpleParameter,
|
|
192362
|
-
isSimpleParameterList,
|
|
192363
|
-
isSingleOrDoubleQuote,
|
|
192364
|
-
isSourceFile,
|
|
192365
|
-
isSourceFileFromLibrary,
|
|
192366
|
-
isSourceFileJS,
|
|
192367
|
-
isSourceFileNotJS,
|
|
192368
|
-
isSourceFileNotJson,
|
|
192369
|
-
isSourceMapping,
|
|
192370
|
-
isSpecialPropertyDeclaration,
|
|
192371
|
-
isSpreadAssignment,
|
|
192372
|
-
isSpreadElement,
|
|
192373
|
-
isStatement,
|
|
192374
|
-
isStatementButNotDeclaration,
|
|
192375
|
-
isStatementOrBlock,
|
|
192376
|
-
isStatementWithLocals,
|
|
192377
|
-
isStatic,
|
|
192378
|
-
isStaticModifier,
|
|
192379
|
-
isString,
|
|
192380
|
-
isStringAKeyword,
|
|
192381
|
-
isStringANonContextualKeyword,
|
|
192382
|
-
isStringAndEmptyAnonymousObjectIntersection,
|
|
192383
|
-
isStringDoubleQuoted,
|
|
192384
|
-
isStringLiteral,
|
|
192385
|
-
isStringLiteralLike,
|
|
192386
|
-
isStringLiteralOrJsxExpression,
|
|
192387
|
-
isStringLiteralOrTemplate,
|
|
192388
|
-
isStringOrNumericLiteralLike,
|
|
192389
|
-
isStringOrRegularExpressionOrTemplateLiteral,
|
|
192390
|
-
isStringTextContainingNode,
|
|
192391
|
-
isSuperCall,
|
|
192392
|
-
isSuperKeyword,
|
|
192393
|
-
isSuperOrSuperProperty,
|
|
192394
|
-
isSuperProperty,
|
|
192395
|
-
isSupportedSourceFileName,
|
|
192396
|
-
isSwitchStatement,
|
|
192397
|
-
isSyntaxList,
|
|
192398
|
-
isSyntheticExpression,
|
|
192399
|
-
isSyntheticReference,
|
|
192400
|
-
isTagName,
|
|
192401
|
-
isTaggedTemplateExpression,
|
|
192402
|
-
isTaggedTemplateTag,
|
|
192403
|
-
isTemplateExpression,
|
|
192404
|
-
isTemplateHead,
|
|
192405
|
-
isTemplateLiteral,
|
|
192406
|
-
isTemplateLiteralKind,
|
|
192407
|
-
isTemplateLiteralToken,
|
|
192408
|
-
isTemplateLiteralTypeNode,
|
|
192409
|
-
isTemplateLiteralTypeSpan,
|
|
192410
|
-
isTemplateMiddle,
|
|
192411
|
-
isTemplateMiddleOrTemplateTail,
|
|
192412
|
-
isTemplateSpan,
|
|
192413
|
-
isTemplateTail,
|
|
192414
|
-
isTextWhiteSpaceLike,
|
|
192415
|
-
isThis,
|
|
192416
|
-
isThisContainerOrFunctionBlock,
|
|
192417
|
-
isThisIdentifier,
|
|
192418
|
-
isThisInTypeQuery,
|
|
192419
|
-
isThisInitializedDeclaration,
|
|
192420
|
-
isThisInitializedObjectBindingExpression,
|
|
192421
|
-
isThisProperty,
|
|
192422
|
-
isThisTypeNode,
|
|
192423
|
-
isThisTypeParameter,
|
|
192424
|
-
isThisTypePredicate,
|
|
192425
|
-
isThrowStatement,
|
|
192426
|
-
isToken,
|
|
192427
|
-
isTokenKind,
|
|
192428
|
-
isTraceEnabled,
|
|
192429
|
-
isTransientSymbol,
|
|
192430
|
-
isTrivia,
|
|
192431
|
-
isTryStatement,
|
|
192432
|
-
isTupleTypeNode,
|
|
192433
|
-
isTypeAlias,
|
|
192434
|
-
isTypeAliasDeclaration,
|
|
192435
|
-
isTypeAssertionExpression,
|
|
192436
|
-
isTypeDeclaration,
|
|
192437
|
-
isTypeElement,
|
|
192438
|
-
isTypeKeyword,
|
|
192439
|
-
isTypeKeywordToken,
|
|
192440
|
-
isTypeKeywordTokenOrIdentifier,
|
|
192441
|
-
isTypeLiteralNode,
|
|
192442
|
-
isTypeNode,
|
|
192443
|
-
isTypeNodeKind,
|
|
192444
|
-
isTypeOfExpression,
|
|
192445
|
-
isTypeOnlyExportDeclaration,
|
|
192446
|
-
isTypeOnlyImportDeclaration,
|
|
192447
|
-
isTypeOnlyImportOrExportDeclaration,
|
|
192448
|
-
isTypeOperatorNode,
|
|
192449
|
-
isTypeParameterDeclaration,
|
|
192450
|
-
isTypePredicateNode,
|
|
192451
|
-
isTypeQueryNode,
|
|
192452
|
-
isTypeReferenceNode,
|
|
192453
|
-
isTypeReferenceType,
|
|
192454
|
-
isTypeUsableAsPropertyName,
|
|
192455
|
-
isUMDExportSymbol,
|
|
192456
|
-
isUnaryExpression,
|
|
192457
|
-
isUnaryExpressionWithWrite,
|
|
192458
|
-
isUnicodeIdentifierStart,
|
|
192459
|
-
isUnionTypeNode,
|
|
192460
|
-
isUnparsedNode,
|
|
192461
|
-
isUnparsedPrepend,
|
|
192462
|
-
isUnparsedSource,
|
|
192463
|
-
isUnparsedTextLike,
|
|
192464
|
-
isUrl,
|
|
192465
|
-
isValidBigIntString,
|
|
192466
|
-
isValidESSymbolDeclaration,
|
|
192467
|
-
isValidTypeOnlyAliasUseSite,
|
|
192468
|
-
isValueSignatureDeclaration,
|
|
192469
|
-
isVarAwaitUsing,
|
|
192470
|
-
isVarConst,
|
|
192471
|
-
isVarUsing,
|
|
192472
|
-
isVariableDeclaration,
|
|
192473
|
-
isVariableDeclarationInVariableStatement,
|
|
192474
|
-
isVariableDeclarationInitializedToBareOrAccessedRequire,
|
|
192475
|
-
isVariableDeclarationInitializedToRequire,
|
|
192476
|
-
isVariableDeclarationList,
|
|
192477
|
-
isVariableLike,
|
|
192478
|
-
isVariableLikeOrAccessor,
|
|
192479
|
-
isVariableStatement,
|
|
192480
|
-
isVoidExpression,
|
|
192481
|
-
isWatchSet,
|
|
192482
|
-
isWhileStatement,
|
|
192483
|
-
isWhiteSpaceLike,
|
|
192484
|
-
isWhiteSpaceSingleLine,
|
|
192485
|
-
isWithStatement,
|
|
192486
|
-
isWriteAccess,
|
|
192487
|
-
isWriteOnlyAccess,
|
|
192488
|
-
isYieldExpression,
|
|
192489
|
-
jsxModeNeedsExplicitImport,
|
|
192490
|
-
keywordPart,
|
|
192491
|
-
last,
|
|
192492
|
-
lastOrUndefined,
|
|
192493
|
-
length,
|
|
192494
|
-
libMap,
|
|
192495
|
-
libs,
|
|
192496
|
-
lineBreakPart,
|
|
192497
|
-
linkNamePart,
|
|
192498
|
-
linkPart,
|
|
192499
|
-
linkTextPart,
|
|
192500
|
-
listFiles,
|
|
192501
|
-
loadModuleFromGlobalCache,
|
|
192502
|
-
loadWithModeAwareCache,
|
|
192503
|
-
makeIdentifierFromModuleName,
|
|
192504
|
-
makeImport,
|
|
192505
|
-
makeImportIfNecessary,
|
|
192506
|
-
makeStringLiteral,
|
|
192507
|
-
mangleScopedPackageName,
|
|
192508
|
-
map,
|
|
192509
|
-
mapAllOrFail,
|
|
192510
|
-
mapDefined,
|
|
192511
|
-
mapDefinedEntries,
|
|
192512
|
-
mapDefinedIterator,
|
|
192513
|
-
mapEntries,
|
|
192514
|
-
mapIterator,
|
|
192515
|
-
mapOneOrMany,
|
|
192516
|
-
mapToDisplayParts,
|
|
192517
|
-
matchFiles,
|
|
192518
|
-
matchPatternOrExact,
|
|
192519
|
-
matchedText,
|
|
192520
|
-
matchesExclude,
|
|
192521
|
-
maybeBind,
|
|
192522
|
-
maybeSetLocalizedDiagnosticMessages,
|
|
192523
|
-
memoize,
|
|
192524
|
-
memoizeCached,
|
|
192525
|
-
memoizeOne,
|
|
192526
|
-
memoizeWeak,
|
|
192527
|
-
metadataHelper,
|
|
192528
|
-
min,
|
|
192529
|
-
minAndMax,
|
|
192530
|
-
missingFileModifiedTime,
|
|
192531
|
-
modifierToFlag,
|
|
192532
|
-
modifiersToFlags,
|
|
192533
|
-
moduleOptionDeclaration,
|
|
192534
|
-
moduleResolutionIsEqualTo,
|
|
192535
|
-
moduleResolutionNameAndModeGetter,
|
|
192536
|
-
moduleResolutionOptionDeclarations,
|
|
192537
|
-
moduleResolutionSupportsPackageJsonExportsAndImports,
|
|
192538
|
-
moduleResolutionUsesNodeModules,
|
|
192539
|
-
moduleSpecifiers,
|
|
192540
|
-
moveEmitHelpers,
|
|
192541
|
-
moveRangeEnd,
|
|
192542
|
-
moveRangePastDecorators,
|
|
192543
|
-
moveRangePastModifiers,
|
|
192544
|
-
moveRangePos,
|
|
192545
|
-
moveSyntheticComments,
|
|
192546
|
-
mutateMap,
|
|
192547
|
-
mutateMapSkippingNewValues,
|
|
192548
|
-
needsParentheses,
|
|
192549
|
-
needsScopeMarker,
|
|
192550
|
-
newCaseClauseTracker,
|
|
192551
|
-
newPrivateEnvironment,
|
|
192552
|
-
noEmitNotification,
|
|
192553
|
-
noEmitSubstitution,
|
|
192554
|
-
noTransformers,
|
|
192555
|
-
noTruncationMaximumTruncationLength,
|
|
192556
|
-
nodeCanBeDecorated,
|
|
192557
|
-
nodeHasName,
|
|
192558
|
-
nodeIsDecorated,
|
|
192559
|
-
nodeIsMissing,
|
|
192560
|
-
nodeIsPresent,
|
|
192561
|
-
nodeIsSynthesized,
|
|
192562
|
-
nodeModuleNameResolver,
|
|
192563
|
-
nodeModulesPathPart,
|
|
192564
|
-
nodeNextJsonConfigResolver,
|
|
192565
|
-
nodeOrChildIsDecorated,
|
|
192566
|
-
nodeOverlapsWithStartEnd,
|
|
192567
|
-
nodePosToString,
|
|
192568
|
-
nodeSeenTracker,
|
|
192569
|
-
nodeStartsNewLexicalEnvironment,
|
|
192570
|
-
nodeToDisplayParts,
|
|
192571
|
-
noop,
|
|
192572
|
-
noopFileWatcher,
|
|
192573
|
-
normalizePath,
|
|
192574
|
-
normalizeSlashes,
|
|
192575
|
-
not,
|
|
192576
|
-
notImplemented,
|
|
192577
|
-
notImplementedResolver,
|
|
192578
|
-
nullNodeConverters,
|
|
192579
|
-
nullParenthesizerRules,
|
|
192580
|
-
nullTransformationContext,
|
|
192581
|
-
objectAllocator,
|
|
192582
|
-
operatorPart,
|
|
192583
|
-
optionDeclarations,
|
|
192584
|
-
optionMapToObject,
|
|
192585
|
-
optionsAffectingProgramStructure,
|
|
192586
|
-
optionsForBuild,
|
|
192587
|
-
optionsForWatch,
|
|
192588
|
-
optionsHaveChanges,
|
|
192589
|
-
optionsHaveModuleResolutionChanges,
|
|
192590
|
-
or,
|
|
192591
|
-
orderedRemoveItem,
|
|
192592
|
-
orderedRemoveItemAt,
|
|
192593
|
-
outFile,
|
|
192594
|
-
packageIdToPackageName,
|
|
192595
|
-
packageIdToString,
|
|
192596
|
-
paramHelper,
|
|
192597
|
-
parameterIsThisKeyword,
|
|
192598
|
-
parameterNamePart,
|
|
192599
|
-
parseBaseNodeFactory,
|
|
192600
|
-
parseBigInt,
|
|
192601
|
-
parseBuildCommand,
|
|
192602
|
-
parseCommandLine,
|
|
192603
|
-
parseCommandLineWorker,
|
|
192604
|
-
parseConfigFileTextToJson,
|
|
192605
|
-
parseConfigFileWithSystem,
|
|
192606
|
-
parseConfigHostFromCompilerHostLike,
|
|
192607
|
-
parseCustomTypeOption,
|
|
192608
|
-
parseIsolatedEntityName,
|
|
192609
|
-
parseIsolatedJSDocComment,
|
|
192610
|
-
parseJSDocTypeExpressionForTests,
|
|
192611
|
-
parseJsonConfigFileContent,
|
|
192612
|
-
parseJsonSourceFileConfigFileContent,
|
|
192613
|
-
parseJsonText,
|
|
192614
|
-
parseListTypeOption,
|
|
192615
|
-
parseNodeFactory,
|
|
192616
|
-
parseNodeModuleFromPath,
|
|
192617
|
-
parsePackageName,
|
|
192618
|
-
parsePseudoBigInt,
|
|
192619
|
-
parseValidBigInt,
|
|
192620
|
-
patchWriteFileEnsuringDirectory,
|
|
192621
|
-
pathContainsNodeModules,
|
|
192622
|
-
pathIsAbsolute,
|
|
192623
|
-
pathIsBareSpecifier,
|
|
192624
|
-
pathIsRelative,
|
|
192625
|
-
patternText,
|
|
192626
|
-
perfLogger,
|
|
192627
|
-
performIncrementalCompilation,
|
|
192628
|
-
performance,
|
|
192629
|
-
plainJSErrors,
|
|
192630
|
-
positionBelongsToNode,
|
|
192631
|
-
positionIsASICandidate,
|
|
192632
|
-
positionIsSynthesized,
|
|
192633
|
-
positionsAreOnSameLine,
|
|
192634
|
-
preProcessFile,
|
|
192635
|
-
probablyUsesSemicolons,
|
|
192636
|
-
processCommentPragmas,
|
|
192637
|
-
processPragmasIntoFields,
|
|
192638
|
-
processTaggedTemplateExpression,
|
|
192639
|
-
programContainsEsModules,
|
|
192640
|
-
programContainsModules,
|
|
192641
|
-
projectReferenceIsEqualTo,
|
|
192642
|
-
propKeyHelper,
|
|
192643
|
-
propertyNamePart,
|
|
192644
|
-
pseudoBigIntToString,
|
|
192645
|
-
punctuationPart,
|
|
192646
|
-
pushIfUnique,
|
|
192647
|
-
quote,
|
|
192648
|
-
quotePreferenceFromString,
|
|
192649
|
-
rangeContainsPosition,
|
|
192650
|
-
rangeContainsPositionExclusive,
|
|
192651
|
-
rangeContainsRange,
|
|
192652
|
-
rangeContainsRangeExclusive,
|
|
192653
|
-
rangeContainsStartEnd,
|
|
192654
|
-
rangeEndIsOnSameLineAsRangeStart,
|
|
192655
|
-
rangeEndPositionsAreOnSameLine,
|
|
192656
|
-
rangeEquals,
|
|
192657
|
-
rangeIsOnSingleLine,
|
|
192658
|
-
rangeOfNode,
|
|
192659
|
-
rangeOfTypeParameters,
|
|
192660
|
-
rangeOverlapsWithStartEnd,
|
|
192661
|
-
rangeStartIsOnSameLineAsRangeEnd,
|
|
192662
|
-
rangeStartPositionsAreOnSameLine,
|
|
192663
|
-
readBuilderProgram,
|
|
192664
|
-
readConfigFile,
|
|
192665
|
-
readHelper,
|
|
192666
|
-
readJson,
|
|
192667
|
-
readJsonConfigFile,
|
|
192668
|
-
readJsonOrUndefined,
|
|
192669
|
-
reduceEachLeadingCommentRange,
|
|
192670
|
-
reduceEachTrailingCommentRange,
|
|
192671
|
-
reduceLeft,
|
|
192672
|
-
reduceLeftIterator,
|
|
192673
|
-
reducePathComponents,
|
|
192674
|
-
refactor,
|
|
192675
|
-
regExpEscape,
|
|
192676
|
-
relativeComplement,
|
|
192677
|
-
removeAllComments,
|
|
192678
|
-
removeEmitHelper,
|
|
192679
|
-
removeExtension,
|
|
192680
|
-
removeFileExtension,
|
|
192681
|
-
removeIgnoredPath,
|
|
192682
|
-
removeMinAndVersionNumbers,
|
|
192683
|
-
removeOptionality,
|
|
192684
|
-
removePrefix,
|
|
192685
|
-
removeSuffix,
|
|
192686
|
-
removeTrailingDirectorySeparator,
|
|
192687
|
-
repeatString,
|
|
192688
|
-
replaceElement,
|
|
192689
|
-
replaceFirstStar,
|
|
192690
|
-
resolutionExtensionIsTSOrJson,
|
|
192691
|
-
resolveConfigFileProjectName,
|
|
192692
|
-
resolveJSModule,
|
|
192693
|
-
resolveLibrary,
|
|
192694
|
-
resolveModuleName,
|
|
192695
|
-
resolveModuleNameFromCache,
|
|
192696
|
-
resolvePackageNameToPackageJson,
|
|
192697
|
-
resolvePath,
|
|
192698
|
-
resolveProjectReferencePath,
|
|
192699
|
-
resolveTripleslashReference,
|
|
192700
|
-
resolveTypeReferenceDirective,
|
|
192701
|
-
resolvingEmptyArray,
|
|
192702
|
-
restHelper,
|
|
192703
|
-
returnFalse,
|
|
192704
|
-
returnNoopFileWatcher,
|
|
192705
|
-
returnTrue,
|
|
192706
|
-
returnUndefined,
|
|
192707
|
-
returnsPromise,
|
|
192708
|
-
runInitializersHelper,
|
|
192709
|
-
sameFlatMap,
|
|
192710
|
-
sameMap,
|
|
192711
|
-
sameMapping,
|
|
192712
|
-
scanShebangTrivia,
|
|
192713
|
-
scanTokenAtPosition,
|
|
192714
|
-
scanner,
|
|
192715
|
-
screenStartingMessageCodes,
|
|
192716
|
-
semanticDiagnosticsOptionDeclarations,
|
|
192717
|
-
serializeCompilerOptions,
|
|
192718
|
-
server,
|
|
192719
|
-
servicesVersion,
|
|
192720
|
-
setCommentRange,
|
|
192721
|
-
setConfigFileInOptions,
|
|
192722
|
-
setConstantValue,
|
|
192723
|
-
setEachParent,
|
|
192724
|
-
setEmitFlags,
|
|
192725
|
-
setFunctionNameHelper,
|
|
192726
|
-
setGetSourceFileAsHashVersioned,
|
|
192727
|
-
setIdentifierAutoGenerate,
|
|
192728
|
-
setIdentifierGeneratedImportReference,
|
|
192729
|
-
setIdentifierTypeArguments,
|
|
192730
|
-
setInternalEmitFlags,
|
|
192731
|
-
setLocalizedDiagnosticMessages,
|
|
192732
|
-
setModuleDefaultHelper,
|
|
192733
|
-
setNodeFlags,
|
|
192734
|
-
setObjectAllocator,
|
|
192735
|
-
setOriginalNode,
|
|
192736
|
-
setParent,
|
|
192737
|
-
setParentRecursive,
|
|
192738
|
-
setPrivateIdentifier,
|
|
192739
|
-
setSnippetElement,
|
|
192740
|
-
setSourceMapRange,
|
|
192741
|
-
setStackTraceLimit,
|
|
192742
|
-
setStartsOnNewLine,
|
|
192743
|
-
setSyntheticLeadingComments,
|
|
192744
|
-
setSyntheticTrailingComments,
|
|
192745
|
-
setSys,
|
|
192746
|
-
setSysLog,
|
|
192747
|
-
setTextRange,
|
|
192748
|
-
setTextRangeEnd,
|
|
192749
|
-
setTextRangePos,
|
|
192750
|
-
setTextRangePosEnd,
|
|
192751
|
-
setTextRangePosWidth,
|
|
192752
|
-
setTokenSourceMapRange,
|
|
192753
|
-
setTypeNode,
|
|
192754
|
-
setUILocale,
|
|
192755
|
-
setValueDeclaration,
|
|
192756
|
-
shouldAllowImportingTsExtension,
|
|
192757
|
-
shouldPreserveConstEnums,
|
|
192758
|
-
shouldUseUriStyleNodeCoreModules,
|
|
192759
|
-
showModuleSpecifier,
|
|
192760
|
-
signatureHasLiteralTypes,
|
|
192761
|
-
signatureHasRestParameter,
|
|
192762
|
-
signatureToDisplayParts,
|
|
192763
|
-
single,
|
|
192764
|
-
singleElementArray,
|
|
192765
|
-
singleIterator,
|
|
192766
|
-
singleOrMany,
|
|
192767
|
-
singleOrUndefined,
|
|
192768
|
-
skipAlias,
|
|
192769
|
-
skipAssertions,
|
|
192770
|
-
skipConstraint,
|
|
192771
|
-
skipOuterExpressions,
|
|
192772
|
-
skipParentheses,
|
|
192773
|
-
skipPartiallyEmittedExpressions,
|
|
192774
|
-
skipTrivia,
|
|
192775
|
-
skipTypeChecking,
|
|
192776
|
-
skipTypeParentheses,
|
|
192777
|
-
skipWhile,
|
|
192778
|
-
sliceAfter,
|
|
192779
|
-
some,
|
|
192780
|
-
sort,
|
|
192781
|
-
sortAndDeduplicate,
|
|
192782
|
-
sortAndDeduplicateDiagnostics,
|
|
192783
|
-
sourceFileAffectingCompilerOptions,
|
|
192784
|
-
sourceFileMayBeEmitted,
|
|
192785
|
-
sourceMapCommentRegExp,
|
|
192786
|
-
sourceMapCommentRegExpDontCareLineStart,
|
|
192787
|
-
spacePart,
|
|
192788
|
-
spanMap,
|
|
192789
|
-
spreadArrayHelper,
|
|
192790
|
-
stableSort,
|
|
192791
|
-
startEndContainsRange,
|
|
192792
|
-
startEndOverlapsWithStartEnd,
|
|
192793
|
-
startOnNewLine,
|
|
192794
|
-
startTracing,
|
|
192795
|
-
startsWith,
|
|
192796
|
-
startsWithDirectory,
|
|
192797
|
-
startsWithUnderscore,
|
|
192798
|
-
startsWithUseStrict,
|
|
192799
|
-
stringContainsAt,
|
|
192800
|
-
stringToToken,
|
|
192801
|
-
stripQuotes,
|
|
192802
|
-
supportedDeclarationExtensions,
|
|
192803
|
-
supportedJSExtensions,
|
|
192804
|
-
supportedJSExtensionsFlat,
|
|
192805
|
-
supportedLocaleDirectories,
|
|
192806
|
-
supportedTSExtensions,
|
|
192807
|
-
supportedTSExtensionsFlat,
|
|
192808
|
-
supportedTSImplementationExtensions,
|
|
192809
|
-
suppressLeadingAndTrailingTrivia,
|
|
192810
|
-
suppressLeadingTrivia,
|
|
192811
|
-
suppressTrailingTrivia,
|
|
192812
|
-
symbolEscapedNameNoDefault,
|
|
192813
|
-
symbolName,
|
|
192814
|
-
symbolNameNoDefault,
|
|
192815
|
-
symbolPart,
|
|
192816
|
-
symbolToDisplayParts,
|
|
192817
|
-
syntaxMayBeASICandidate,
|
|
192818
|
-
syntaxRequiresTrailingSemicolonOrASI,
|
|
192819
|
-
sys,
|
|
192820
|
-
sysLog,
|
|
192821
|
-
tagNamesAreEquivalent,
|
|
192822
|
-
takeWhile,
|
|
192823
|
-
targetOptionDeclaration,
|
|
192824
|
-
templateObjectHelper,
|
|
192825
|
-
testFormatSettings,
|
|
192826
|
-
textChangeRangeIsUnchanged,
|
|
192827
|
-
textChangeRangeNewSpan,
|
|
192828
|
-
textChanges,
|
|
192829
|
-
textOrKeywordPart,
|
|
192830
|
-
textPart,
|
|
192831
|
-
textRangeContainsPositionInclusive,
|
|
192832
|
-
textSpanContainsPosition,
|
|
192833
|
-
textSpanContainsTextSpan,
|
|
192834
|
-
textSpanEnd,
|
|
192835
|
-
textSpanIntersection,
|
|
192836
|
-
textSpanIntersectsWith,
|
|
192837
|
-
textSpanIntersectsWithPosition,
|
|
192838
|
-
textSpanIntersectsWithTextSpan,
|
|
192839
|
-
textSpanIsEmpty,
|
|
192840
|
-
textSpanOverlap,
|
|
192841
|
-
textSpanOverlapsWith,
|
|
192842
|
-
textSpansEqual,
|
|
192843
|
-
textToKeywordObj,
|
|
192844
|
-
timestamp,
|
|
192845
|
-
toArray,
|
|
192846
|
-
toBuilderFileEmit,
|
|
192847
|
-
toBuilderStateFileInfoForMultiEmit,
|
|
192848
|
-
toEditorSettings,
|
|
192849
|
-
toFileNameLowerCase,
|
|
192850
|
-
toLowerCase,
|
|
192851
|
-
toPath,
|
|
192852
|
-
toProgramEmitPending,
|
|
192853
|
-
tokenIsIdentifierOrKeyword,
|
|
192854
|
-
tokenIsIdentifierOrKeywordOrGreaterThan,
|
|
192855
|
-
tokenToString,
|
|
192856
|
-
trace,
|
|
192857
|
-
tracing,
|
|
192858
|
-
tracingEnabled,
|
|
192859
|
-
transform,
|
|
192860
|
-
transformClassFields,
|
|
192861
|
-
transformDeclarations,
|
|
192862
|
-
transformECMAScriptModule,
|
|
192863
|
-
transformES2015,
|
|
192864
|
-
transformES2016,
|
|
192865
|
-
transformES2017,
|
|
192866
|
-
transformES2018,
|
|
192867
|
-
transformES2019,
|
|
192868
|
-
transformES2020,
|
|
192869
|
-
transformES2021,
|
|
192870
|
-
transformES5,
|
|
192871
|
-
transformESDecorators,
|
|
192872
|
-
transformESNext,
|
|
192873
|
-
transformGenerators,
|
|
192874
|
-
transformJsx,
|
|
192875
|
-
transformLegacyDecorators,
|
|
192876
|
-
transformModule,
|
|
192877
|
-
transformNamedEvaluation,
|
|
192878
|
-
transformNodeModule,
|
|
192879
|
-
transformNodes,
|
|
192880
|
-
transformSystemModule,
|
|
192881
|
-
transformTypeScript,
|
|
192882
|
-
transpile,
|
|
192883
|
-
transpileModule,
|
|
192884
|
-
transpileOptionValueCompilerOptions,
|
|
192885
|
-
tryAddToSet,
|
|
192886
|
-
tryAndIgnoreErrors,
|
|
192887
|
-
tryCast,
|
|
192888
|
-
tryDirectoryExists,
|
|
192889
|
-
tryExtractTSExtension,
|
|
192890
|
-
tryFileExists,
|
|
192891
|
-
tryGetClassExtendingExpressionWithTypeArguments,
|
|
192892
|
-
tryGetClassImplementingOrExtendingExpressionWithTypeArguments,
|
|
192893
|
-
tryGetDirectories,
|
|
192894
|
-
tryGetExtensionFromPath,
|
|
192895
|
-
tryGetImportFromModuleSpecifier,
|
|
192896
|
-
tryGetJSDocSatisfiesTypeNode,
|
|
192897
|
-
tryGetModuleNameFromFile,
|
|
192898
|
-
tryGetModuleSpecifierFromDeclaration,
|
|
192899
|
-
tryGetNativePerformanceHooks,
|
|
192900
|
-
tryGetPropertyAccessOrIdentifierToString,
|
|
192901
|
-
tryGetPropertyNameOfBindingOrAssignmentElement,
|
|
192902
|
-
tryGetSourceMappingURL,
|
|
192903
|
-
tryGetTextOfPropertyName,
|
|
192904
|
-
tryIOAndConsumeErrors,
|
|
192905
|
-
tryParseJson,
|
|
192906
|
-
tryParsePattern,
|
|
192907
|
-
tryParsePatterns,
|
|
192908
|
-
tryParseRawSourceMap,
|
|
192909
|
-
tryReadDirectory,
|
|
192910
|
-
tryReadFile,
|
|
192911
|
-
tryRemoveDirectoryPrefix,
|
|
192912
|
-
tryRemoveExtension,
|
|
192913
|
-
tryRemovePrefix,
|
|
192914
|
-
tryRemoveSuffix,
|
|
192915
|
-
typeAcquisitionDeclarations,
|
|
192916
|
-
typeAliasNamePart,
|
|
192917
|
-
typeDirectiveIsEqualTo,
|
|
192918
|
-
typeKeywords,
|
|
192919
|
-
typeParameterNamePart,
|
|
192920
|
-
typeToDisplayParts,
|
|
192921
|
-
unchangedPollThresholds,
|
|
192922
|
-
unchangedTextChangeRange,
|
|
192923
|
-
unescapeLeadingUnderscores,
|
|
192924
|
-
unmangleScopedPackageName,
|
|
192925
|
-
unorderedRemoveItem,
|
|
192926
|
-
unorderedRemoveItemAt,
|
|
192927
|
-
unreachableCodeIsError,
|
|
192928
|
-
unusedLabelIsError,
|
|
192929
|
-
unwrapInnermostStatementOfLabel,
|
|
192930
|
-
updateErrorForNoInputFiles,
|
|
192931
|
-
updateLanguageServiceSourceFile,
|
|
192932
|
-
updateMissingFilePathsWatch,
|
|
192933
|
-
updateResolutionField,
|
|
192934
|
-
updateSharedExtendedConfigFileWatcher,
|
|
192935
|
-
updateSourceFile,
|
|
192936
|
-
updateWatchingWildcardDirectories,
|
|
192937
|
-
usesExtensionsOnImports,
|
|
192938
|
-
usingSingleLineStringWriter,
|
|
192939
|
-
utf16EncodeAsString,
|
|
192940
|
-
validateLocaleAndSetLanguage,
|
|
192941
|
-
valuesHelper,
|
|
192942
|
-
version,
|
|
192943
|
-
versionMajorMinor,
|
|
192944
|
-
visitArray,
|
|
192945
|
-
visitCommaListElements,
|
|
192946
|
-
visitEachChild,
|
|
192947
|
-
visitFunctionBody,
|
|
192948
|
-
visitIterationBody,
|
|
192949
|
-
visitLexicalEnvironment,
|
|
192950
|
-
visitNode,
|
|
192951
|
-
visitNodes,
|
|
192952
|
-
visitParameterList,
|
|
192953
|
-
walkUpBindingElementsAndPatterns,
|
|
192954
|
-
walkUpLexicalEnvironments,
|
|
192955
|
-
walkUpOuterExpressions,
|
|
192956
|
-
walkUpParenthesizedExpressions,
|
|
192957
|
-
walkUpParenthesizedTypes,
|
|
192958
|
-
walkUpParenthesizedTypesAndGetParentAndChild,
|
|
192959
|
-
whitespaceOrMapCommentRegExp,
|
|
192960
|
-
writeCommentRange,
|
|
192961
|
-
writeFile,
|
|
192962
|
-
writeFileEnsuringDirectories,
|
|
192963
|
-
zipWith,
|
|
192964
|
-
});
|
|
192965
|
-
}
|
|
190679
|
+
if (typeof module !== "undefined" && module.exports) { module.exports = ts; }
|
|
192966
190680
|
//# sourceMappingURL=typescript.js.map
|