mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-12 01:48:33 -05:00
Support @this tags (#24927)
* Type check `@this` tags No special support in fourslash yet, so quickinfo probably doesn't work. * Do no require braces and update API baselines
This commit is contained in:
committed by
GitHub
parent
debcf1260e
commit
2a8c4d1bd7
@@ -14890,6 +14890,10 @@ namespace ts {
|
||||
return getTypeFromTypeNode(jsDocFunctionType.parameters[0].type!);
|
||||
}
|
||||
}
|
||||
const thisTag = getJSDocThisTag(node);
|
||||
if (thisTag && thisTag.typeExpression) {
|
||||
return getTypeFromTypeNode(thisTag.typeExpression);
|
||||
}
|
||||
}
|
||||
|
||||
function isInConstructorArgumentInitializer(node: Node, constructorDecl: Node): boolean {
|
||||
|
||||
@@ -491,6 +491,8 @@ namespace ts {
|
||||
case SyntaxKind.JSDocCallbackTag:
|
||||
return visitNode(cbNode, (node as JSDocCallbackTag).fullName) ||
|
||||
visitNode(cbNode, (node as JSDocCallbackTag).typeExpression);
|
||||
case SyntaxKind.JSDocThisTag:
|
||||
return visitNode(cbNode, (node as JSDocThisTag).typeExpression);
|
||||
case SyntaxKind.JSDocSignature:
|
||||
return visitNodes(cbNode, cbNodes, node.decorators) ||
|
||||
visitNodes(cbNode, cbNodes, node.modifiers) ||
|
||||
@@ -6497,6 +6499,9 @@ namespace ts {
|
||||
case "constructor":
|
||||
tag = parseClassTag(atToken, tagName);
|
||||
break;
|
||||
case "this":
|
||||
tag = parseThisTag(atToken, tagName);
|
||||
break;
|
||||
case "arg":
|
||||
case "argument":
|
||||
case "param":
|
||||
@@ -6768,6 +6773,15 @@ namespace ts {
|
||||
return finishNode(tag);
|
||||
}
|
||||
|
||||
function parseThisTag(atToken: AtToken, tagName: Identifier): JSDocThisTag {
|
||||
const tag = <JSDocThisTag>createNode(SyntaxKind.JSDocThisTag, atToken.pos);
|
||||
tag.atToken = atToken;
|
||||
tag.tagName = tagName;
|
||||
tag.typeExpression = parseJSDocTypeExpression(/*mayOmitBraces*/ true);
|
||||
skipWhitespace();
|
||||
return finishNode(tag);
|
||||
}
|
||||
|
||||
function parseTypedefTag(atToken: AtToken, tagName: Identifier, indent: number): JSDocTypedefTag {
|
||||
const typeExpression = tryParseTypeExpression();
|
||||
skipWhitespace();
|
||||
|
||||
@@ -371,6 +371,7 @@ namespace ts {
|
||||
JSDocCallbackTag,
|
||||
JSDocParameterTag,
|
||||
JSDocReturnTag,
|
||||
JSDocThisTag,
|
||||
JSDocTypeTag,
|
||||
JSDocTemplateTag,
|
||||
JSDocTypedefTag,
|
||||
@@ -2323,6 +2324,11 @@ namespace ts {
|
||||
kind: SyntaxKind.JSDocClassTag;
|
||||
}
|
||||
|
||||
export interface JSDocThisTag extends JSDocTag {
|
||||
kind: SyntaxKind.JSDocThisTag;
|
||||
typeExpression?: JSDocTypeExpression;
|
||||
}
|
||||
|
||||
export interface JSDocTemplateTag extends JSDocTag {
|
||||
kind: SyntaxKind.JSDocTemplateTag;
|
||||
typeParameters: NodeArray<TypeParameterDeclaration>;
|
||||
|
||||
@@ -4970,6 +4970,11 @@ namespace ts {
|
||||
return getFirstJSDocTag(node, isJSDocClassTag);
|
||||
}
|
||||
|
||||
/** Gets the JSDoc this tag for the node if present */
|
||||
export function getJSDocThisTag(node: Node): JSDocThisTag | undefined {
|
||||
return getFirstJSDocTag(node, isJSDocThisTag);
|
||||
}
|
||||
|
||||
/** Gets the JSDoc return tag for the node if present */
|
||||
export function getJSDocReturnTag(node: Node): JSDocReturnTag | undefined {
|
||||
return getFirstJSDocTag(node, isJSDocReturnTag);
|
||||
@@ -5701,6 +5706,10 @@ namespace ts {
|
||||
return node.kind === SyntaxKind.JSDocClassTag;
|
||||
}
|
||||
|
||||
export function isJSDocThisTag(node: Node): node is JSDocThisTag {
|
||||
return node.kind === SyntaxKind.JSDocThisTag;
|
||||
}
|
||||
|
||||
export function isJSDocParameterTag(node: Node): node is JSDocParameterTag {
|
||||
return node.kind === SyntaxKind.JSDocParameterTag;
|
||||
}
|
||||
|
||||
@@ -1,83 +1,75 @@
|
||||
typescript_standalone.d.ts(21,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(21,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11540,28): error TS1005: ';' expected.
|
||||
@@ -100,14 +92,14 @@ typescript_standalone.d.ts(11556,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11556,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11578,28): error TS1005: ';' expected.
|
||||
@@ -115,19 +107,27 @@ typescript_standalone.d.ts(11578,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,48): error TS1005: ';' expected.
|
||||
|
||||
|
||||
==== tests/cases/compiler/APISample_Watch.ts (0 errors) ====
|
||||
|
||||
@@ -1,83 +1,75 @@
|
||||
typescript_standalone.d.ts(21,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(21,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11540,28): error TS1005: ';' expected.
|
||||
@@ -100,14 +92,14 @@ typescript_standalone.d.ts(11556,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11556,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11578,28): error TS1005: ';' expected.
|
||||
@@ -115,19 +107,27 @@ typescript_standalone.d.ts(11578,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,48): error TS1005: ';' expected.
|
||||
|
||||
|
||||
==== tests/cases/compiler/APISample_WatchWithDefaults.ts (0 errors) ====
|
||||
|
||||
@@ -1,83 +1,75 @@
|
||||
typescript_standalone.d.ts(21,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(21,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11540,28): error TS1005: ';' expected.
|
||||
@@ -100,14 +92,14 @@ typescript_standalone.d.ts(11556,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11556,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11578,28): error TS1005: ';' expected.
|
||||
@@ -115,19 +107,27 @@ typescript_standalone.d.ts(11578,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,48): error TS1005: ';' expected.
|
||||
|
||||
|
||||
==== tests/cases/compiler/APISample_WatchWithOwnWatchHost.ts (0 errors) ====
|
||||
|
||||
@@ -1,83 +1,75 @@
|
||||
typescript_standalone.d.ts(21,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(21,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11540,28): error TS1005: ';' expected.
|
||||
@@ -100,14 +92,14 @@ typescript_standalone.d.ts(11556,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11556,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11578,28): error TS1005: ';' expected.
|
||||
@@ -115,19 +107,27 @@ typescript_standalone.d.ts(11578,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,48): error TS1005: ';' expected.
|
||||
|
||||
|
||||
==== tests/cases/compiler/APISample_compile.ts (0 errors) ====
|
||||
|
||||
@@ -1,83 +1,75 @@
|
||||
typescript_standalone.d.ts(21,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(21,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11540,28): error TS1005: ';' expected.
|
||||
@@ -100,14 +92,14 @@ typescript_standalone.d.ts(11556,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11556,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11578,28): error TS1005: ';' expected.
|
||||
@@ -115,19 +107,27 @@ typescript_standalone.d.ts(11578,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,48): error TS1005: ';' expected.
|
||||
|
||||
|
||||
==== tests/cases/compiler/APISample_jsdoc.ts (0 errors) ====
|
||||
|
||||
@@ -1,83 +1,75 @@
|
||||
typescript_standalone.d.ts(21,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(21,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11540,28): error TS1005: ';' expected.
|
||||
@@ -100,14 +92,14 @@ typescript_standalone.d.ts(11556,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11556,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11578,28): error TS1005: ';' expected.
|
||||
@@ -115,19 +107,27 @@ typescript_standalone.d.ts(11578,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,48): error TS1005: ';' expected.
|
||||
|
||||
|
||||
==== tests/cases/compiler/APISample_linter.ts (0 errors) ====
|
||||
|
||||
@@ -1,83 +1,75 @@
|
||||
typescript_standalone.d.ts(21,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(21,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11540,28): error TS1005: ';' expected.
|
||||
@@ -100,14 +92,14 @@ typescript_standalone.d.ts(11556,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11556,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11578,28): error TS1005: ';' expected.
|
||||
@@ -115,19 +107,27 @@ typescript_standalone.d.ts(11578,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,48): error TS1005: ';' expected.
|
||||
|
||||
|
||||
==== tests/cases/compiler/APISample_parseConfig.ts (0 errors) ====
|
||||
|
||||
@@ -1,83 +1,75 @@
|
||||
typescript_standalone.d.ts(21,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(21,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11540,28): error TS1005: ';' expected.
|
||||
@@ -100,14 +92,14 @@ typescript_standalone.d.ts(11556,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11556,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11578,28): error TS1005: ';' expected.
|
||||
@@ -115,19 +107,27 @@ typescript_standalone.d.ts(11578,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,48): error TS1005: ';' expected.
|
||||
|
||||
|
||||
==== tests/cases/compiler/APISample_transform.ts (0 errors) ====
|
||||
|
||||
@@ -1,83 +1,75 @@
|
||||
typescript_standalone.d.ts(21,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(21,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8913,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9173,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9523,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9547,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9634,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10799,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10810,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10820,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10895,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10952,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11006,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11026,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11036,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11070,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11073,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11077,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11095,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11121,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11124,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11136,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11166,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11200,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11211,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11235,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(8921,42): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9181,46): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9531,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9555,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(9642,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10807,57): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10818,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10828,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10903,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(10960,47): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11014,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11034,44): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11044,35): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11078,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11081,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11085,45): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11103,56): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11129,36): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11132,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11144,43): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11174,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11208,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11219,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11243,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11247,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11277,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11320,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11507,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11509,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11513,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11251,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11255,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11285,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11328,41): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11515,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11517,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11519,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11521,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11530,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11532,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11534,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11536,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11523,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11525,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11527,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11529,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11538,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11540,28): error TS1005: ';' expected.
|
||||
@@ -100,14 +92,14 @@ typescript_standalone.d.ts(11556,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11556,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11558,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11568,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11570,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11572,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11574,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11560,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11562,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11564,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11566,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11576,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11578,28): error TS1005: ';' expected.
|
||||
@@ -115,19 +107,27 @@ typescript_standalone.d.ts(11578,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11580,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11582,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11656,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11658,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11660,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11662,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11738,48): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11584,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11586,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11588,37): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11590,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11592,52): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11664,72): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11666,38): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11668,71): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11670,40): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,28): error TS1005: ';' expected.
|
||||
typescript_standalone.d.ts(11746,48): error TS1005: ';' expected.
|
||||
|
||||
|
||||
==== tests/cases/compiler/APISample_watcher.ts (0 errors) ====
|
||||
|
||||
File diff suppressed because one or more lines are too long
36
tests/baselines/reference/api/typescript.d.ts
vendored
36
tests/baselines/reference/api/typescript.d.ts
vendored
File diff suppressed because one or more lines are too long
32
tests/baselines/reference/thisTag1.symbols
Normal file
32
tests/baselines/reference/thisTag1.symbols
Normal file
@@ -0,0 +1,32 @@
|
||||
=== tests/cases/conformance/jsdoc/a.js ===
|
||||
/** @this {{ n: number }} Mount Holyoke Preparatory School
|
||||
* @param {string} s
|
||||
* @return {number}
|
||||
*/
|
||||
function f(s) {
|
||||
>f : Symbol(f, Decl(a.js, 0, 0))
|
||||
>s : Symbol(s, Decl(a.js, 4, 11))
|
||||
|
||||
return this.n + s.length
|
||||
>this.n : Symbol(n, Decl(a.js, 0, 12))
|
||||
>this : Symbol(__type, Decl(a.js, 0, 11))
|
||||
>n : Symbol(n, Decl(a.js, 0, 12))
|
||||
>s.length : Symbol(String.length, Decl(lib.es5.d.ts, --, --))
|
||||
>s : Symbol(s, Decl(a.js, 4, 11))
|
||||
>length : Symbol(String.length, Decl(lib.es5.d.ts, --, --))
|
||||
}
|
||||
|
||||
const o = {
|
||||
>o : Symbol(o, Decl(a.js, 8, 5))
|
||||
|
||||
f,
|
||||
>f : Symbol(f, Decl(a.js, 8, 11))
|
||||
|
||||
n: 1
|
||||
>n : Symbol(n, Decl(a.js, 9, 6))
|
||||
}
|
||||
o.f('hi')
|
||||
>o.f : Symbol(f, Decl(a.js, 8, 11))
|
||||
>o : Symbol(o, Decl(a.js, 8, 5))
|
||||
>f : Symbol(f, Decl(a.js, 8, 11))
|
||||
|
||||
37
tests/baselines/reference/thisTag1.types
Normal file
37
tests/baselines/reference/thisTag1.types
Normal file
@@ -0,0 +1,37 @@
|
||||
=== tests/cases/conformance/jsdoc/a.js ===
|
||||
/** @this {{ n: number }} Mount Holyoke Preparatory School
|
||||
* @param {string} s
|
||||
* @return {number}
|
||||
*/
|
||||
function f(s) {
|
||||
>f : (s: string) => number
|
||||
>s : string
|
||||
|
||||
return this.n + s.length
|
||||
>this.n + s.length : number
|
||||
>this.n : number
|
||||
>this : { n: number; }
|
||||
>n : number
|
||||
>s.length : number
|
||||
>s : string
|
||||
>length : number
|
||||
}
|
||||
|
||||
const o = {
|
||||
>o : { [x: string]: any; f: (s: string) => number; n: number; }
|
||||
>{ f, n: 1} : { [x: string]: any; f: (s: string) => number; n: number; }
|
||||
|
||||
f,
|
||||
>f : (s: string) => number
|
||||
|
||||
n: 1
|
||||
>n : number
|
||||
>1 : 1
|
||||
}
|
||||
o.f('hi')
|
||||
>o.f('hi') : number
|
||||
>o.f : (s: string) => number
|
||||
>o : { [x: string]: any; f: (s: string) => number; n: number; }
|
||||
>f : (s: string) => number
|
||||
>'hi' : "hi"
|
||||
|
||||
19
tests/cases/conformance/jsdoc/thisTag1.ts
Normal file
19
tests/cases/conformance/jsdoc/thisTag1.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
// @noEmit: true
|
||||
// @allowJs: true
|
||||
// @checkJs: true
|
||||
// @strict: true
|
||||
// @Filename: a.js
|
||||
|
||||
/** @this {{ n: number }} Mount Holyoke Preparatory School
|
||||
* @param {string} s
|
||||
* @return {number}
|
||||
*/
|
||||
function f(s) {
|
||||
return this.n + s.length
|
||||
}
|
||||
|
||||
const o = {
|
||||
f,
|
||||
n: 1
|
||||
}
|
||||
o.f('hi')
|
||||
Reference in New Issue
Block a user