diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 4344409e69748..f4c45a856ee91 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -4091,7 +4091,14 @@ namespace ts { } else { const contextFile = getSourceFileOfNode(getOriginalNode(context!.enclosingDeclaration))!; - return `"${file.moduleName || moduleSpecifiers.getModuleSpecifier(compilerOptions, contextFile, contextFile.path, file.path, context!.tracker.moduleResolverHost!)}"`; + return `"${file.moduleName || moduleSpecifiers.getModuleSpecifiers( + symbol, + compilerOptions, + contextFile, + context!.tracker.moduleResolverHost!, + context!.tracker.moduleResolverHost!.getSourceFiles!(), + { importModuleSpecifierPreference: "non-relative" } + )[0]}"`; } } const declaration = symbol.declarations[0]; diff --git a/src/compiler/moduleSpecifiers.ts b/src/compiler/moduleSpecifiers.ts index 6da0fc61e63d7..40f3bb96e2292 100644 --- a/src/compiler/moduleSpecifiers.ts +++ b/src/compiler/moduleSpecifiers.ts @@ -15,17 +15,20 @@ namespace ts.moduleSpecifiers { // For each symlink/original for a module, returns a list of ways to import that file. export function getModuleSpecifiers( moduleSymbol: Symbol, - program: Program, + compilerOptions: CompilerOptions, importingSourceFile: SourceFile, host: ModuleSpecifierResolutionHost, + files: ReadonlyArray, preferences: ModuleSpecifierPreferences, ): ReadonlyArray> { const ambient = tryGetModuleNameFromAmbientModule(moduleSymbol); if (ambient) return [[ambient]]; - const compilerOptions = program.getCompilerOptions(); - const info = getInfo(compilerOptions, importingSourceFile, importingSourceFile.fileName, host); - const modulePaths = getAllModulePaths(program, getSourceFileOfNode(moduleSymbol.valueDeclaration)); + const info = getInfo(compilerOptions, importingSourceFile, importingSourceFile.path, host); + if (!files) { + return Debug.fail("Files list must be present to resolve symlinks in specifier resolution"); + } + const modulePaths = getAllModulePaths(files, getSourceFileOfNode(moduleSymbol.valueDeclaration), info.getCanonicalFileName, host); const global = mapDefined(modulePaths, moduleFileName => getGlobalModuleSpecifier(moduleFileName, info, host, compilerOptions)); return global.length ? global.map(g => [g]) : modulePaths.map(moduleFileName => @@ -130,15 +133,57 @@ namespace ts.moduleSpecifiers { return firstDefined(imports, ({ text }) => pathIsRelative(text) ? fileExtensionIs(text, Extension.Js) : undefined) || false; } + function discoverProbableSymlinks(files: ReadonlyArray) { + const symlinks = mapDefined(files, sf => + sf.resolvedModules && firstDefinedIterator(sf.resolvedModules.values(), res => + res && res.originalPath && res.resolvedFileName !== res.originalPath ? [res.resolvedFileName, res.originalPath] : undefined)); + const result = createMap(); + if (symlinks) { + for (const [resolvedPath, originalPath] of symlinks) { + const resolvedParts = getPathComponents(resolvedPath); + const originalParts = getPathComponents(originalPath); + while (resolvedParts[resolvedParts.length - 1] === originalParts[originalParts.length - 1]) { + resolvedParts.pop(); + originalParts.pop(); + } + result.set(getPathFromPathComponents(originalParts), getPathFromPathComponents(resolvedParts)); + } + } + return result; + } + + function getAllModulePathsUsingIndirectSymlinks(files: ReadonlyArray, target: string, getCanonicalFileName: (file: string) => string, host: ModuleSpecifierResolutionHost) { + const links = discoverProbableSymlinks(files); + const paths = arrayFrom(links.keys()); + let options: string[] | undefined; + for (const path of paths) { + const resolved = links.get(path)!; + if (startsWith(target, resolved + "/")) { + const relative = getRelativePathFromDirectory(resolved, target, getCanonicalFileName); + const option = resolvePath(path, relative); + if (!host.fileExists || host.fileExists(option)) { + if (!options) options = []; + options.push(option); + } + } + } + const resolvedtarget = host.getCurrentDirectory ? resolvePath(host.getCurrentDirectory(), target) : target; + if (options) { + options.push(resolvedtarget); // Since these are speculative, we also include the original resolved name as a possibility + return options; + } + return [resolvedtarget]; + } + /** * Looks for a existing imports that use symlinks to this module. * Only if no symlink is available, the real path will be used. */ - function getAllModulePaths(program: Program, { fileName }: SourceFile): ReadonlyArray { - const symlinks = mapDefined(program.getSourceFiles(), sf => + function getAllModulePaths(files: ReadonlyArray, { fileName }: SourceFile, getCanonicalFileName: (file: string) => string, host: ModuleSpecifierResolutionHost): ReadonlyArray { + const symlinks = mapDefined(files, sf => sf.resolvedModules && firstDefinedIterator(sf.resolvedModules.values(), res => res && res.resolvedFileName === fileName ? res.originalPath : undefined)); - return symlinks.length === 0 ? [fileName] : symlinks; + return symlinks.length === 0 ? getAllModulePathsUsingIndirectSymlinks(files, fileName, getCanonicalFileName, host) : symlinks; } function getRelativePathNParents(relativePath: string): number { diff --git a/src/harness/harness.ts b/src/harness/harness.ts index 7a3019d9b36b6..0b72834e1c2b6 100644 --- a/src/harness/harness.ts +++ b/src/harness/harness.ts @@ -1108,6 +1108,7 @@ namespace Harness { { name: "noImplicitReferences", type: "boolean" }, { name: "currentDirectory", type: "string" }, { name: "symlink", type: "string" }, + { name: "link", type: "string" }, // Emitted js baseline will print full paths for every output file { name: "fullEmitPaths", type: "boolean" } ]; @@ -1179,7 +1180,9 @@ namespace Harness { harnessSettings: TestCaseParser.CompilerSettings | undefined, compilerOptions: ts.CompilerOptions | undefined, // Current directory is needed for rwcRunner to be able to use currentDirectory defined in json file - currentDirectory: string | undefined): compiler.CompilationResult { + currentDirectory: string | undefined, + symlinks?: vfs.FileSet + ): compiler.CompilationResult { const options: ts.CompilerOptions & HarnessOptions = compilerOptions ? ts.cloneCompilerOptions(compilerOptions) : { noResolve: false }; options.target = options.target || ts.ScriptTarget.ES3; options.newLine = options.newLine || ts.NewLineKind.CarriageReturnLineFeed; @@ -1216,6 +1219,9 @@ namespace Harness { const docs = inputFiles.concat(otherFiles).map(documents.TextDocument.fromTestFile); const fs = vfs.createFromFileSystem(IO, !useCaseSensitiveFileNames, { documents: docs, cwd: currentDirectory }); + if (symlinks) { + fs.apply(symlinks); + } const host = new fakes.CompilerHost(fs, options); return compiler.compileFiles(host, programFileNames, options); } @@ -1836,6 +1842,7 @@ namespace Harness { // Regex for parsing options in the format "@Alpha: Value of any sort" const optionRegex = /^[\/]{2}\s*@(\w+)\s*:\s*([^\r\n]*)/gm; // multiple matches on multiple lines + const linkRegex = /^[\/]{2}\s*@link\s*:\s*([^\r\n]*)\s*->\s*([^\r\n]*)/gm; // multiple matches on multiple lines export function extractCompilerSettings(content: string): CompilerSettings { const opts: CompilerSettings = {}; @@ -1855,6 +1862,7 @@ namespace Harness { testUnitData: TestUnitData[]; tsConfig: ts.ParsedCommandLine | undefined; tsConfigFileUnitData: TestUnitData | undefined; + symlinks?: vfs.FileSet; } /** Given a test file containing // @FileName directives, return an array of named units of code to be added to an existing compiler instance */ @@ -1869,10 +1877,16 @@ namespace Harness { let currentFileOptions: any = {}; let currentFileName: any; let refs: string[] = []; + let symlinks: vfs.FileSet | undefined; for (const line of lines) { - const testMetaData = optionRegex.exec(line); - if (testMetaData) { + let testMetaData: RegExpExecArray | null; + const linkMetaData = linkRegex.exec(line); + if (linkMetaData) { + if (!symlinks) symlinks = {}; + symlinks[linkMetaData[2].trim()] = new vfs.Symlink(linkMetaData[1].trim()); + } + else if (testMetaData = optionRegex.exec(line)) { // Comment line, check for global/file @options and record them optionRegex.lastIndex = 0; const metaDataName = testMetaData[1].toLowerCase(); @@ -1961,7 +1975,7 @@ namespace Harness { break; } } - return { settings, testUnitData, tsConfig, tsConfigFileUnitData }; + return { settings, testUnitData, tsConfig, tsConfigFileUnitData, symlinks }; } } diff --git a/src/harness/vfs.ts b/src/harness/vfs.ts index 2c1c6f2dd542b..be612f64deb38 100644 --- a/src/harness/vfs.ts +++ b/src/harness/vfs.ts @@ -911,7 +911,7 @@ namespace vfs { if (this.stringComparer(vpath.dirname(path), path) === 0) { throw new TypeError("Roots cannot be symbolic links."); } - this.symlinkSync(entry.symlink, path); + this.symlinkSync(vpath.resolve(dirname, entry.symlink), path); this._applyFileExtendedOptions(path, entry); } else if (entry instanceof Link) { @@ -1078,8 +1078,7 @@ namespace vfs { if (symlink) { for (const link of symlink.split(",").map(link => link.trim())) { fs.mkdirpSync(vpath.dirname(link)); - fs.symlinkSync(document.file, link); - fs.filemeta(link).set("document", document); + fs.symlinkSync(vpath.resolve(fs.cwd(), document.file), link); } } } diff --git a/src/parser/types.ts b/src/parser/types.ts index 964a84176a04d..c79976091fe48 100644 --- a/src/parser/types.ts +++ b/src/parser/types.ts @@ -5255,6 +5255,7 @@ namespace ts { useCaseSensitiveFileNames?(): boolean; fileExists?(path: string): boolean; readFile?(path: string): string | undefined; + getSourceFiles?(): ReadonlyArray; // Used for cached resolutions to find symlinks without traversing the fs (again) } /** @deprecated See comment on SymbolWriter */ diff --git a/src/services/codefixes/importFixes.ts b/src/services/codefixes/importFixes.ts index 66402068fa407..6775326100542 100644 --- a/src/services/codefixes/importFixes.ts +++ b/src/services/codefixes/importFixes.ts @@ -247,7 +247,7 @@ namespace ts.codefix { preferences: UserPreferences, ): ReadonlyArray { const choicesForEachExportingModule = flatMap(moduleSymbols, ({ moduleSymbol, importKind }) => { - const modulePathsGroups = moduleSpecifiers.getModuleSpecifiers(moduleSymbol, program, sourceFile, host, preferences); + const modulePathsGroups = moduleSpecifiers.getModuleSpecifiers(moduleSymbol, program.getCompilerOptions(), sourceFile, host, program.getSourceFiles(), preferences); return modulePathsGroups.map(group => group.map(moduleSpecifier => ({ moduleSpecifier, importKind }))); }); // Sort to keep the shortest paths first, but keep [relativePath, importRelativeToBaseUrl] groups together diff --git a/src/testRunner/compilerRunner.ts b/src/testRunner/compilerRunner.ts index fc295c80f2e86..69bd80bdf11b2 100644 --- a/src/testRunner/compilerRunner.ts +++ b/src/testRunner/compilerRunner.ts @@ -179,7 +179,9 @@ class CompilerTest { this.otherFiles, this.harnessSettings, /*options*/ tsConfigOptions, - /*currentDirectory*/ this.harnessSettings.currentDirectory); + /*currentDirectory*/ this.harnessSettings.currentDirectory, + testCaseContent.symlinks + ); this.options = this.result.options; } diff --git a/tests/baselines/reference/APISample_Watch.errors.txt b/tests/baselines/reference/APISample_Watch.errors.txt index 2acf3736320f8..e1e24d9d1a8ed 100644 --- a/tests/baselines/reference/APISample_Watch.errors.txt +++ b/tests/baselines/reference/APISample_Watch.errors.txt @@ -1,133 +1,133 @@ typescript_standalone.d.ts(21,28): error TS1005: ';' expected. typescript_standalone.d.ts(21,41): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,28): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,42): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,46): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,38): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,57): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,41): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,48): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,47): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,47): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,44): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,35): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,45): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,56): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,36): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,41): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,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(11531,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11531,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,38): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,71): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,48): 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(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(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(11538,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11538,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,37): error TS1005: ';' expected. +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(11576,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11576,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11578,28): error TS1005: ';' expected. +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(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. ==== tests/cases/compiler/APISample_Watch.ts (0 errors) ==== diff --git a/tests/baselines/reference/APISample_WatchWithDefaults.errors.txt b/tests/baselines/reference/APISample_WatchWithDefaults.errors.txt index f3ab873050859..a67ce67f33426 100644 --- a/tests/baselines/reference/APISample_WatchWithDefaults.errors.txt +++ b/tests/baselines/reference/APISample_WatchWithDefaults.errors.txt @@ -1,133 +1,133 @@ typescript_standalone.d.ts(21,28): error TS1005: ';' expected. typescript_standalone.d.ts(21,41): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,28): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,42): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,46): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,38): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,57): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,41): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,48): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,47): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,47): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,44): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,35): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,45): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,56): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,36): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,41): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,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(11531,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11531,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,38): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,71): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,48): 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(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(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(11538,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11538,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,37): error TS1005: ';' expected. +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(11576,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11576,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11578,28): error TS1005: ';' expected. +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(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. ==== tests/cases/compiler/APISample_WatchWithDefaults.ts (0 errors) ==== diff --git a/tests/baselines/reference/APISample_WatchWithOwnWatchHost.errors.txt b/tests/baselines/reference/APISample_WatchWithOwnWatchHost.errors.txt index 98c64db5f8ac2..ab00aef04d8ca 100644 --- a/tests/baselines/reference/APISample_WatchWithOwnWatchHost.errors.txt +++ b/tests/baselines/reference/APISample_WatchWithOwnWatchHost.errors.txt @@ -1,133 +1,133 @@ typescript_standalone.d.ts(21,28): error TS1005: ';' expected. typescript_standalone.d.ts(21,41): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,28): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,42): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,46): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,38): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,57): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,41): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,48): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,47): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,47): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,44): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,35): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,45): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,56): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,36): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,41): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,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(11531,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11531,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,38): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,71): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,48): 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(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(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(11538,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11538,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,37): error TS1005: ';' expected. +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(11576,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11576,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11578,28): error TS1005: ';' expected. +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(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. ==== tests/cases/compiler/APISample_WatchWithOwnWatchHost.ts (0 errors) ==== diff --git a/tests/baselines/reference/APISample_compile.errors.txt b/tests/baselines/reference/APISample_compile.errors.txt index a84f736a3dc93..6aef2e513edc2 100644 --- a/tests/baselines/reference/APISample_compile.errors.txt +++ b/tests/baselines/reference/APISample_compile.errors.txt @@ -1,133 +1,133 @@ typescript_standalone.d.ts(21,28): error TS1005: ';' expected. typescript_standalone.d.ts(21,41): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,28): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,42): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,46): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,38): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,57): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,41): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,48): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,47): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,47): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,44): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,35): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,45): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,56): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,36): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,41): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,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(11531,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11531,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,38): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,71): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,48): 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(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(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(11538,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11538,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,37): error TS1005: ';' expected. +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(11576,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11576,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11578,28): error TS1005: ';' expected. +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(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. ==== tests/cases/compiler/APISample_compile.ts (0 errors) ==== diff --git a/tests/baselines/reference/APISample_jsdoc.errors.txt b/tests/baselines/reference/APISample_jsdoc.errors.txt index 46b14bb2ea1e5..cb323e7d542a8 100644 --- a/tests/baselines/reference/APISample_jsdoc.errors.txt +++ b/tests/baselines/reference/APISample_jsdoc.errors.txt @@ -1,133 +1,133 @@ typescript_standalone.d.ts(21,28): error TS1005: ';' expected. typescript_standalone.d.ts(21,41): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,28): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,42): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,46): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,38): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,57): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,41): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,48): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,47): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,47): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,44): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,35): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,45): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,56): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,36): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,41): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,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(11531,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11531,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,38): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,71): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,48): 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(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(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(11538,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11538,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,37): error TS1005: ';' expected. +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(11576,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11576,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11578,28): error TS1005: ';' expected. +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(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. ==== tests/cases/compiler/APISample_jsdoc.ts (0 errors) ==== diff --git a/tests/baselines/reference/APISample_linter.errors.txt b/tests/baselines/reference/APISample_linter.errors.txt index 150c5f0a0c117..3f3c3d92c35fe 100644 --- a/tests/baselines/reference/APISample_linter.errors.txt +++ b/tests/baselines/reference/APISample_linter.errors.txt @@ -1,133 +1,133 @@ typescript_standalone.d.ts(21,28): error TS1005: ';' expected. typescript_standalone.d.ts(21,41): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,28): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,42): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,46): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,38): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,57): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,41): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,48): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,47): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,47): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,44): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,35): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,45): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,56): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,36): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,41): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,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(11531,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11531,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,38): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,71): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,48): 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(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(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(11538,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11538,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,37): error TS1005: ';' expected. +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(11576,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11576,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11578,28): error TS1005: ';' expected. +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(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. ==== tests/cases/compiler/APISample_linter.ts (0 errors) ==== diff --git a/tests/baselines/reference/APISample_parseConfig.errors.txt b/tests/baselines/reference/APISample_parseConfig.errors.txt index 24bb4ed962cff..31b18c908b32b 100644 --- a/tests/baselines/reference/APISample_parseConfig.errors.txt +++ b/tests/baselines/reference/APISample_parseConfig.errors.txt @@ -1,133 +1,133 @@ typescript_standalone.d.ts(21,28): error TS1005: ';' expected. typescript_standalone.d.ts(21,41): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,28): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,42): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,46): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,38): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,57): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,41): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,48): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,47): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,47): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,44): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,35): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,45): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,56): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,36): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,41): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,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(11531,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11531,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,38): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,71): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,48): 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(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(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(11538,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11538,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,37): error TS1005: ';' expected. +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(11576,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11576,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11578,28): error TS1005: ';' expected. +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(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. ==== tests/cases/compiler/APISample_parseConfig.ts (0 errors) ==== diff --git a/tests/baselines/reference/APISample_transform.errors.txt b/tests/baselines/reference/APISample_transform.errors.txt index 7f5c20db32d6c..a60d4983246aa 100644 --- a/tests/baselines/reference/APISample_transform.errors.txt +++ b/tests/baselines/reference/APISample_transform.errors.txt @@ -1,133 +1,133 @@ typescript_standalone.d.ts(21,28): error TS1005: ';' expected. typescript_standalone.d.ts(21,41): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,28): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,42): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,46): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,38): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,57): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,41): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,48): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,47): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,47): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,44): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,35): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,45): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,56): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,36): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,41): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,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(11531,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11531,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,38): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,71): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,48): 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(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(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(11538,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11538,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,37): error TS1005: ';' expected. +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(11576,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11576,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11578,28): error TS1005: ';' expected. +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(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. ==== tests/cases/compiler/APISample_transform.ts (0 errors) ==== diff --git a/tests/baselines/reference/APISample_watcher.errors.txt b/tests/baselines/reference/APISample_watcher.errors.txt index 0de54243e2636..dc4736619ca28 100644 --- a/tests/baselines/reference/APISample_watcher.errors.txt +++ b/tests/baselines/reference/APISample_watcher.errors.txt @@ -1,133 +1,133 @@ typescript_standalone.d.ts(21,28): error TS1005: ';' expected. typescript_standalone.d.ts(21,41): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,28): error TS1005: ';' expected. -typescript_standalone.d.ts(8912,42): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9172,46): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9522,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9546,36): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,28): error TS1005: ';' expected. -typescript_standalone.d.ts(9633,38): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10798,57): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10809,41): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10819,48): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10894,47): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,28): error TS1005: ';' expected. -typescript_standalone.d.ts(10951,47): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11005,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11025,44): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11035,35): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11069,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11072,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11076,45): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11094,56): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11120,36): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11123,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11135,43): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11165,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11199,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11210,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11234,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11242,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11246,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11276,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11319,41): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11506,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11508,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11512,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11514,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11516,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11518,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11520,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(11531,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11531,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11533,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11535,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11537,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11539,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11541,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11543,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11545,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11547,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11549,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11551,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11553,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11555,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11557,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11567,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11569,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11571,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11573,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11575,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11577,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11579,37): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11581,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11583,52): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11655,72): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11657,38): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11659,71): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11661,40): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,28): error TS1005: ';' expected. -typescript_standalone.d.ts(11737,48): 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(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(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(11538,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11538,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11540,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11542,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11544,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11546,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11548,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11550,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11552,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11554,37): error TS1005: ';' expected. +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(11576,28): error TS1005: ';' expected. +typescript_standalone.d.ts(11576,37): error TS1005: ';' expected. +typescript_standalone.d.ts(11578,28): error TS1005: ';' expected. +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(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. ==== tests/cases/compiler/APISample_watcher.ts (0 errors) ==== diff --git a/tests/baselines/reference/api/tsserverlibrary.d.ts b/tests/baselines/reference/api/tsserverlibrary.d.ts index 84764068c53a7..c09fab01201bc 100644 --- a/tests/baselines/reference/api/tsserverlibrary.d.ts +++ b/tests/baselines/reference/api/tsserverlibrary.d.ts @@ -4467,6 +4467,7 @@ declare namespace ts { useCaseSensitiveFileNames?(): boolean; fileExists?(path: string): boolean; readFile?(path: string): string | undefined; + getSourceFiles?(): ReadonlyArray; } /** @deprecated See comment on SymbolWriter */ interface SymbolTracker { @@ -9174,7 +9175,7 @@ declare namespace ts.moduleSpecifiers { importModuleSpecifierPreference?: "relative" | "non-relative"; } function getModuleSpecifier(compilerOptions: CompilerOptions, fromSourceFile: SourceFile, fromSourceFileName: string, toFileName: string, host: ModuleSpecifierResolutionHost, preferences?: ModuleSpecifierPreferences): string; - function getModuleSpecifiers(moduleSymbol: Symbol, program: Program, importingSourceFile: SourceFile, host: ModuleSpecifierResolutionHost, preferences: ModuleSpecifierPreferences): ReadonlyArray>; + function getModuleSpecifiers(moduleSymbol: Symbol, compilerOptions: CompilerOptions, importingSourceFile: SourceFile, host: ModuleSpecifierResolutionHost, files: ReadonlyArray, preferences: ModuleSpecifierPreferences): ReadonlyArray>; } declare namespace ts { /** diff --git a/tests/baselines/reference/api/typescript.d.ts b/tests/baselines/reference/api/typescript.d.ts index de921984acce5..4df566625016d 100644 --- a/tests/baselines/reference/api/typescript.d.ts +++ b/tests/baselines/reference/api/typescript.d.ts @@ -4467,6 +4467,7 @@ declare namespace ts { useCaseSensitiveFileNames?(): boolean; fileExists?(path: string): boolean; readFile?(path: string): string | undefined; + getSourceFiles?(): ReadonlyArray; } /** @deprecated See comment on SymbolWriter */ interface SymbolTracker { @@ -9174,7 +9175,7 @@ declare namespace ts.moduleSpecifiers { importModuleSpecifierPreference?: "relative" | "non-relative"; } function getModuleSpecifier(compilerOptions: CompilerOptions, fromSourceFile: SourceFile, fromSourceFileName: string, toFileName: string, host: ModuleSpecifierResolutionHost, preferences?: ModuleSpecifierPreferences): string; - function getModuleSpecifiers(moduleSymbol: Symbol, program: Program, importingSourceFile: SourceFile, host: ModuleSpecifierResolutionHost, preferences: ModuleSpecifierPreferences): ReadonlyArray>; + function getModuleSpecifiers(moduleSymbol: Symbol, compilerOptions: CompilerOptions, importingSourceFile: SourceFile, host: ModuleSpecifierResolutionHost, files: ReadonlyArray, preferences: ModuleSpecifierPreferences): ReadonlyArray>; } declare namespace ts { /** diff --git a/tests/baselines/reference/symbolLinkDeclarationEmitModuleNames.js b/tests/baselines/reference/symbolLinkDeclarationEmitModuleNames.js new file mode 100644 index 0000000000000..59eb99f24952a --- /dev/null +++ b/tests/baselines/reference/symbolLinkDeclarationEmitModuleNames.js @@ -0,0 +1,116 @@ +//// [tests/cases/compiler/symbolLinkDeclarationEmitModuleNames.ts] //// + +//// [application.ts] +import { Constructor } from "@loopback/context"; +export type ControllerClass = Constructor; +//// [usage.ts] +import { ControllerClass } from './application'; +import { BindingKey } from '@loopback/context'; + +export const CONTROLLER_CLASS = BindingKey.create(null as any); // line in question +//// [value-promise.ts] +export type Constructor = (...args: any[]) => T; +//// [bindingkey.ts] +import { Constructor } from "@loopback/context" +export class BindingKey { + readonly __type: T; + static create>(ctor: T) { + return new BindingKey(); + } +} + +//// [index.ts] +export * from "./src/value-promise"; +export * from "./src/bindingkey"; + + +//// [value-promise.js] +"use strict"; +exports.__esModule = true; +//// [bindingkey.js] +"use strict"; +exports.__esModule = true; +var BindingKey = /** @class */ (function () { + function BindingKey() { + } + BindingKey.create = function (ctor) { + return new BindingKey(); + }; + return BindingKey; +}()); +exports.BindingKey = BindingKey; +//// [index.js] +"use strict"; +function __export(m) { + for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; +} +exports.__esModule = true; +__export(require("./src/bindingkey")); +//// [application.js] +"use strict"; +exports.__esModule = true; +//// [usage.js] +"use strict"; +exports.__esModule = true; +var context_1 = require("@loopback/context"); +exports.CONTROLLER_CLASS = context_1.BindingKey.create(null); // line in question + + +//// [value-promise.d.ts] +export declare type Constructor = (...args: any[]) => T; +//// [bindingkey.d.ts] +import { Constructor } from "@loopback/context"; +export declare class BindingKey { + readonly __type: T; + static create>(ctor: T): BindingKey; +} +//// [index.d.ts] +export * from "./src/value-promise"; +export * from "./src/bindingkey"; +//// [application.d.ts] +import { Constructor } from "@loopback/context"; +export declare type ControllerClass = Constructor; +//// [usage.d.ts] +import { BindingKey } from '@loopback/context'; +export declare const CONTROLLER_CLASS: BindingKey>; + + +//// [DtsFileErrors] + + +tests/cases/compiler/monorepo/context/src/bindingkey.d.ts(1,29): error TS2307: Cannot find module '@loopback/context'. +tests/cases/compiler/monorepo/core/src/application.d.ts(1,29): error TS2307: Cannot find module '@loopback/context'. +tests/cases/compiler/monorepo/core/src/usage.d.ts(1,28): error TS2307: Cannot find module '@loopback/context'. +tests/cases/compiler/monorepo/core/src/usage.d.ts(2,51): error TS2307: Cannot find module '@loopback/context/src/value-promise'. + + +==== tests/cases/compiler/monorepo/core/src/application.d.ts (1 errors) ==== + import { Constructor } from "@loopback/context"; + ~~~~~~~~~~~~~~~~~~~ +!!! error TS2307: Cannot find module '@loopback/context'. + export declare type ControllerClass = Constructor; + +==== tests/cases/compiler/monorepo/core/src/usage.d.ts (2 errors) ==== + import { BindingKey } from '@loopback/context'; + ~~~~~~~~~~~~~~~~~~~ +!!! error TS2307: Cannot find module '@loopback/context'. + export declare const CONTROLLER_CLASS: BindingKey>; + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +!!! error TS2307: Cannot find module '@loopback/context/src/value-promise'. + +==== /.src/tests/cases/compiler/monorepo/context/src/value-promise.d.ts (0 errors) ==== + export declare type Constructor = (...args: any[]) => T; + +==== /.src/tests/cases/compiler/monorepo/context/src/bindingkey.d.ts (1 errors) ==== + import { Constructor } from "@loopback/context"; + ~~~~~~~~~~~~~~~~~~~ +!!! error TS2307: Cannot find module '@loopback/context'. + export declare class BindingKey { + readonly __type: T; + static create>(ctor: T): BindingKey; + } + +==== /.src/tests/cases/compiler/monorepo/context/index.d.ts (0 errors) ==== + export * from "./src/value-promise"; + export * from "./src/bindingkey"; + \ No newline at end of file diff --git a/tests/baselines/reference/symbolLinkDeclarationEmitModuleNames.symbols b/tests/baselines/reference/symbolLinkDeclarationEmitModuleNames.symbols new file mode 100644 index 0000000000000..15b88cbe0bf19 --- /dev/null +++ b/tests/baselines/reference/symbolLinkDeclarationEmitModuleNames.symbols @@ -0,0 +1,59 @@ +=== tests/cases/compiler/monorepo/core/src/application.ts === +import { Constructor } from "@loopback/context"; +>Constructor : Symbol(Constructor, Decl(application.ts, 0, 8)) + +export type ControllerClass = Constructor; +>ControllerClass : Symbol(ControllerClass, Decl(application.ts, 0, 48)) +>Constructor : Symbol(Constructor, Decl(application.ts, 0, 8)) + +=== tests/cases/compiler/monorepo/core/src/usage.ts === +import { ControllerClass } from './application'; +>ControllerClass : Symbol(ControllerClass, Decl(usage.ts, 0, 8)) + +import { BindingKey } from '@loopback/context'; +>BindingKey : Symbol(BindingKey, Decl(usage.ts, 1, 8)) + +export const CONTROLLER_CLASS = BindingKey.create(null as any); // line in question +>CONTROLLER_CLASS : Symbol(CONTROLLER_CLASS, Decl(usage.ts, 3, 12)) +>BindingKey.create : Symbol(BindingKey.create, Decl(bindingkey.ts, 2, 21)) +>BindingKey : Symbol(BindingKey, Decl(usage.ts, 1, 8)) +>create : Symbol(BindingKey.create, Decl(bindingkey.ts, 2, 21)) +>ControllerClass : Symbol(ControllerClass, Decl(usage.ts, 0, 8)) + +=== tests/cases/compiler/monorepo/context/src/value-promise.ts === +export type Constructor = (...args: any[]) => T; +>Constructor : Symbol(Constructor, Decl(value-promise.ts, 0, 0)) +>T : Symbol(T, Decl(value-promise.ts, 0, 24)) +>args : Symbol(args, Decl(value-promise.ts, 0, 30)) +>T : Symbol(T, Decl(value-promise.ts, 0, 24)) + +=== tests/cases/compiler/monorepo/context/src/bindingkey.ts === +import { Constructor } from "@loopback/context" +>Constructor : Symbol(Constructor, Decl(bindingkey.ts, 0, 8)) + +export class BindingKey { +>BindingKey : Symbol(BindingKey, Decl(bindingkey.ts, 0, 47)) +>T : Symbol(T, Decl(bindingkey.ts, 1, 24)) + + readonly __type: T; +>__type : Symbol(BindingKey.__type, Decl(bindingkey.ts, 1, 28)) +>T : Symbol(T, Decl(bindingkey.ts, 1, 24)) + + static create>(ctor: T) { +>create : Symbol(BindingKey.create, Decl(bindingkey.ts, 2, 21)) +>T : Symbol(T, Decl(bindingkey.ts, 3, 16)) +>Constructor : Symbol(Constructor, Decl(bindingkey.ts, 0, 8)) +>ctor : Symbol(ctor, Decl(bindingkey.ts, 3, 44)) +>T : Symbol(T, Decl(bindingkey.ts, 3, 16)) + + return new BindingKey(); +>BindingKey : Symbol(BindingKey, Decl(bindingkey.ts, 0, 47)) +>T : Symbol(T, Decl(bindingkey.ts, 3, 16)) + } +} + +=== tests/cases/compiler/monorepo/context/index.ts === +export * from "./src/value-promise"; +No type information for this code.export * from "./src/bindingkey"; +No type information for this code. +No type information for this code. \ No newline at end of file diff --git a/tests/baselines/reference/symbolLinkDeclarationEmitModuleNames.types b/tests/baselines/reference/symbolLinkDeclarationEmitModuleNames.types new file mode 100644 index 0000000000000..a83fe0d650ce3 --- /dev/null +++ b/tests/baselines/reference/symbolLinkDeclarationEmitModuleNames.types @@ -0,0 +1,63 @@ +=== tests/cases/compiler/monorepo/core/src/application.ts === +import { Constructor } from "@loopback/context"; +>Constructor : any + +export type ControllerClass = Constructor; +>ControllerClass : Constructor +>Constructor : Constructor + +=== tests/cases/compiler/monorepo/core/src/usage.ts === +import { ControllerClass } from './application'; +>ControllerClass : any + +import { BindingKey } from '@loopback/context'; +>BindingKey : typeof BindingKey + +export const CONTROLLER_CLASS = BindingKey.create(null as any); // line in question +>CONTROLLER_CLASS : BindingKey> +>BindingKey.create(null as any) : BindingKey> +>BindingKey.create : >(ctor: T) => BindingKey +>BindingKey : typeof BindingKey +>create : >(ctor: T) => BindingKey +>ControllerClass : import("tests/cases/compiler/monorepo/context/src/value-promise").Constructor +>null as any : any +>null : null + +=== tests/cases/compiler/monorepo/context/src/value-promise.ts === +export type Constructor = (...args: any[]) => T; +>Constructor : Constructor +>T : T +>args : any[] +>T : T + +=== tests/cases/compiler/monorepo/context/src/bindingkey.ts === +import { Constructor } from "@loopback/context" +>Constructor : any + +export class BindingKey { +>BindingKey : BindingKey +>T : T + + readonly __type: T; +>__type : T +>T : T + + static create>(ctor: T) { +>create : >(ctor: T) => BindingKey +>T : T +>Constructor : Constructor +>ctor : T +>T : T + + return new BindingKey(); +>new BindingKey() : BindingKey +>BindingKey : typeof BindingKey +>T : T + } +} + +=== tests/cases/compiler/monorepo/context/index.ts === +export * from "./src/value-promise"; +No type information for this code.export * from "./src/bindingkey"; +No type information for this code. +No type information for this code. \ No newline at end of file diff --git a/tests/cases/compiler/symbolLinkDeclarationEmitModuleNames.ts b/tests/cases/compiler/symbolLinkDeclarationEmitModuleNames.ts new file mode 100644 index 0000000000000..95defd4ecc768 --- /dev/null +++ b/tests/cases/compiler/symbolLinkDeclarationEmitModuleNames.ts @@ -0,0 +1,25 @@ +// @declaration: true +// @filename: monorepo/core/src/application.ts +import { Constructor } from "@loopback/context"; +export type ControllerClass = Constructor; +// @filename: monorepo/core/src/usage.ts +import { ControllerClass } from './application'; +import { BindingKey } from '@loopback/context'; + +export const CONTROLLER_CLASS = BindingKey.create(null as any); // line in question +// @filename: monorepo/context/src/value-promise.ts +export type Constructor = (...args: any[]) => T; +// @filename: monorepo/context/src/bindingkey.ts +import { Constructor } from "@loopback/context" +export class BindingKey { + readonly __type: T; + static create>(ctor: T) { + return new BindingKey(); + } +} + +// @filename: monorepo/context/index.ts +export * from "./src/value-promise"; +export * from "./src/bindingkey"; + +// @link: tests/cases/compiler/monorepo/context -> tests/cases/compiler/monorepo/core/node_modules/@loopback/context \ No newline at end of file