Skip to content

Commit c46e45c

Browse files
committed
Fix file casing
1 parent 1bbe661 commit c46e45c

File tree

2 files changed

+23
-15
lines changed

2 files changed

+23
-15
lines changed

Jakefile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ file(Paths.servicesDefinitionFile, [TaskNames.coreBuild], function() {
329329
extends: "../../src/tsconfig-base",
330330
compilerOptions: {
331331
"stripInternal": true,
332-
"outFile": "typescriptservices.js"
332+
"outFile": "typescriptServices.js"
333333
},
334334
files
335335
};

tests/baselines/reference/api/typescript.d.ts

+22-14
Original file line numberDiff line numberDiff line change
@@ -352,17 +352,18 @@ declare namespace ts {
352352
JSDocCallbackTag = 292,
353353
JSDocParameterTag = 293,
354354
JSDocReturnTag = 294,
355-
JSDocTypeTag = 295,
356-
JSDocTemplateTag = 296,
357-
JSDocTypedefTag = 297,
358-
JSDocPropertyTag = 298,
359-
SyntaxList = 299,
360-
NotEmittedStatement = 300,
361-
PartiallyEmittedExpression = 301,
362-
CommaListExpression = 302,
363-
MergeDeclarationMarker = 303,
364-
EndOfDeclarationMarker = 304,
365-
Count = 305,
355+
JSDocThisTag = 295,
356+
JSDocTypeTag = 296,
357+
JSDocTemplateTag = 297,
358+
JSDocTypedefTag = 298,
359+
JSDocPropertyTag = 299,
360+
SyntaxList = 300,
361+
NotEmittedStatement = 301,
362+
PartiallyEmittedExpression = 302,
363+
CommaListExpression = 303,
364+
MergeDeclarationMarker = 304,
365+
EndOfDeclarationMarker = 305,
366+
Count = 306,
366367
FirstAssignment = 58,
367368
LastAssignment = 70,
368369
FirstCompoundAssignment = 59,
@@ -389,9 +390,9 @@ declare namespace ts {
389390
LastBinaryOperator = 70,
390391
FirstNode = 146,
391392
FirstJSDocNode = 278,
392-
LastJSDocNode = 298,
393+
LastJSDocNode = 299,
393394
FirstJSDocTagNode = 289,
394-
LastJSDocTagNode = 298
395+
LastJSDocTagNode = 299
395396
}
396397
enum NodeFlags {
397398
None = 0,
@@ -1520,6 +1521,10 @@ declare namespace ts {
15201521
interface JSDocClassTag extends JSDocTag {
15211522
kind: SyntaxKind.JSDocClassTag;
15221523
}
1524+
interface JSDocThisTag extends JSDocTag {
1525+
kind: SyntaxKind.JSDocThisTag;
1526+
typeExpression?: JSDocTypeExpression;
1527+
}
15231528
interface JSDocTemplateTag extends JSDocTag {
15241529
kind: SyntaxKind.JSDocTemplateTag;
15251530
typeParameters: NodeArray<TypeParameterDeclaration>;
@@ -3203,6 +3208,8 @@ declare namespace ts {
32033208
function getJSDocAugmentsTag(node: Node): JSDocAugmentsTag | undefined;
32043209
/** Gets the JSDoc class tag for the node if present */
32053210
function getJSDocClassTag(node: Node): JSDocClassTag | undefined;
3211+
/** Gets the JSDoc this tag for the node if present */
3212+
function getJSDocThisTag(node: Node): JSDocThisTag | undefined;
32063213
/** Gets the JSDoc return tag for the node if present */
32073214
function getJSDocReturnTag(node: Node): JSDocReturnTag | undefined;
32083215
/** Gets the JSDoc template tag for the node if present */
@@ -3388,6 +3395,7 @@ declare namespace ts {
33883395
function isJSDoc(node: Node): node is JSDoc;
33893396
function isJSDocAugmentsTag(node: Node): node is JSDocAugmentsTag;
33903397
function isJSDocClassTag(node: Node): node is JSDocClassTag;
3398+
function isJSDocThisTag(node: Node): node is JSDocThisTag;
33913399
function isJSDocParameterTag(node: Node): node is JSDocParameterTag;
33923400
function isJSDocReturnTag(node: Node): node is JSDocReturnTag;
33933401
function isJSDocTypeTag(node: Node): node is JSDocTypeTag;
@@ -5510,5 +5518,5 @@ declare namespace ts {
55105518
*/
55115519
function transform<T extends Node>(source: T | T[], transformers: TransformerFactory<T>[], compilerOptions?: CompilerOptions): TransformationResult<T>;
55125520
}
5513-
//# sourceMappingURL=typescriptservices.d.ts.map
5521+
//# sourceMappingURL=typescriptServices.d.ts.map
55145522
export = ts

0 commit comments

Comments
 (0)