From c46e45c78d8d28a4735d08b77b95dbb311baae1a Mon Sep 17 00:00:00 2001 From: Ryan Cavanaugh Date: Wed, 13 Jun 2018 15:56:38 -0700 Subject: [PATCH] Fix file casing --- Jakefile.js | 2 +- tests/baselines/reference/api/typescript.d.ts | 36 +++++++++++-------- 2 files changed, 23 insertions(+), 15 deletions(-) diff --git a/Jakefile.js b/Jakefile.js index a41dad6b757..23ec1f41598 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -329,7 +329,7 @@ file(Paths.servicesDefinitionFile, [TaskNames.coreBuild], function() { extends: "../../src/tsconfig-base", compilerOptions: { "stripInternal": true, - "outFile": "typescriptservices.js" + "outFile": "typescriptServices.js" }, files }; diff --git a/tests/baselines/reference/api/typescript.d.ts b/tests/baselines/reference/api/typescript.d.ts index 113736fcf5d..eb536b3fcd5 100644 --- a/tests/baselines/reference/api/typescript.d.ts +++ b/tests/baselines/reference/api/typescript.d.ts @@ -352,17 +352,18 @@ declare namespace ts { JSDocCallbackTag = 292, JSDocParameterTag = 293, JSDocReturnTag = 294, - JSDocTypeTag = 295, - JSDocTemplateTag = 296, - JSDocTypedefTag = 297, - JSDocPropertyTag = 298, - SyntaxList = 299, - NotEmittedStatement = 300, - PartiallyEmittedExpression = 301, - CommaListExpression = 302, - MergeDeclarationMarker = 303, - EndOfDeclarationMarker = 304, - Count = 305, + JSDocThisTag = 295, + JSDocTypeTag = 296, + JSDocTemplateTag = 297, + JSDocTypedefTag = 298, + JSDocPropertyTag = 299, + SyntaxList = 300, + NotEmittedStatement = 301, + PartiallyEmittedExpression = 302, + CommaListExpression = 303, + MergeDeclarationMarker = 304, + EndOfDeclarationMarker = 305, + Count = 306, FirstAssignment = 58, LastAssignment = 70, FirstCompoundAssignment = 59, @@ -389,9 +390,9 @@ declare namespace ts { LastBinaryOperator = 70, FirstNode = 146, FirstJSDocNode = 278, - LastJSDocNode = 298, + LastJSDocNode = 299, FirstJSDocTagNode = 289, - LastJSDocTagNode = 298 + LastJSDocTagNode = 299 } enum NodeFlags { None = 0, @@ -1520,6 +1521,10 @@ declare namespace ts { interface JSDocClassTag extends JSDocTag { kind: SyntaxKind.JSDocClassTag; } + interface JSDocThisTag extends JSDocTag { + kind: SyntaxKind.JSDocThisTag; + typeExpression?: JSDocTypeExpression; + } interface JSDocTemplateTag extends JSDocTag { kind: SyntaxKind.JSDocTemplateTag; typeParameters: NodeArray; @@ -3203,6 +3208,8 @@ declare namespace ts { function getJSDocAugmentsTag(node: Node): JSDocAugmentsTag | undefined; /** Gets the JSDoc class tag for the node if present */ function getJSDocClassTag(node: Node): JSDocClassTag | undefined; + /** Gets the JSDoc this tag for the node if present */ + function getJSDocThisTag(node: Node): JSDocThisTag | undefined; /** Gets the JSDoc return tag for the node if present */ function getJSDocReturnTag(node: Node): JSDocReturnTag | undefined; /** Gets the JSDoc template tag for the node if present */ @@ -3388,6 +3395,7 @@ declare namespace ts { function isJSDoc(node: Node): node is JSDoc; function isJSDocAugmentsTag(node: Node): node is JSDocAugmentsTag; function isJSDocClassTag(node: Node): node is JSDocClassTag; + function isJSDocThisTag(node: Node): node is JSDocThisTag; function isJSDocParameterTag(node: Node): node is JSDocParameterTag; function isJSDocReturnTag(node: Node): node is JSDocReturnTag; function isJSDocTypeTag(node: Node): node is JSDocTypeTag; @@ -5510,5 +5518,5 @@ declare namespace ts { */ function transform(source: T | T[], transformers: TransformerFactory[], compilerOptions?: CompilerOptions): TransformationResult; } -//# sourceMappingURL=typescriptservices.d.ts.map +//# sourceMappingURL=typescriptServices.d.ts.map export = ts \ No newline at end of file