@@ -22,7 +22,7 @@ export function delint(sourceFile: ts.SourceFile) {
2222>delint : (sourceFile: ts.SourceFile) => void, Symbol(delint, Decl(APISample_linter.ts, 11, 33))
2323>sourceFile : ts.SourceFile, Symbol(sourceFile, Decl(APISample_linter.ts, 13, 23))
2424>ts : any, Symbol(ts, Decl(APISample_linter.ts, 11, 6))
25- >SourceFile : ts.SourceFile, Symbol(ts.SourceFile, Decl(typescript.d.ts, 740, 5), Decl(typescript.d.ts, 1289 , 5))
25+ >SourceFile : ts.SourceFile, Symbol(ts.SourceFile, Decl(typescript.d.ts, 740, 5), Decl(typescript.d.ts, 1285 , 5))
2626
2727 delintNode(sourceFile);
2828>delintNode(sourceFile) : void
@@ -33,7 +33,7 @@ export function delint(sourceFile: ts.SourceFile) {
3333>delintNode : (node: ts.Node) => void, Symbol(delintNode, Decl(APISample_linter.ts, 14, 27))
3434>node : ts.Node, Symbol(node, Decl(APISample_linter.ts, 16, 24))
3535>ts : any, Symbol(ts, Decl(APISample_linter.ts, 11, 6))
36- >Node : ts.Node, Symbol(ts.Node, Decl(typescript.d.ts, 296, 5), Decl(typescript.d.ts, 1249 , 32))
36+ >Node : ts.Node, Symbol(ts.Node, Decl(typescript.d.ts, 296, 5), Decl(typescript.d.ts, 1245 , 32))
3737
3838 switch (node.kind) {
3939>node.kind : ts.SyntaxKind, Symbol(ts.Node.kind, Decl(typescript.d.ts, 297, 38))
@@ -230,20 +230,20 @@ export function delint(sourceFile: ts.SourceFile) {
230230>report : (node: ts.Node, message: string) => void, Symbol(report, Decl(APISample_linter.ts, 48, 5))
231231>node : ts.Node, Symbol(node, Decl(APISample_linter.ts, 50, 20))
232232>ts : any, Symbol(ts, Decl(APISample_linter.ts, 11, 6))
233- >Node : ts.Node, Symbol(ts.Node, Decl(typescript.d.ts, 296, 5), Decl(typescript.d.ts, 1249 , 32))
233+ >Node : ts.Node, Symbol(ts.Node, Decl(typescript.d.ts, 296, 5), Decl(typescript.d.ts, 1245 , 32))
234234>message : string, Symbol(message, Decl(APISample_linter.ts, 50, 34))
235235
236236 let { line, character } = sourceFile.getLineAndCharacterOfPosition(node.getStart());
237237>line : number, Symbol(line, Decl(APISample_linter.ts, 51, 13))
238238>character : number, Symbol(character, Decl(APISample_linter.ts, 51, 19))
239239>sourceFile.getLineAndCharacterOfPosition(node.getStart()) : ts.LineAndCharacter
240- >sourceFile.getLineAndCharacterOfPosition : (pos: number) => ts.LineAndCharacter, Symbol(ts.SourceFile.getLineAndCharacterOfPosition, Decl(typescript.d.ts, 1290 , 26))
240+ >sourceFile.getLineAndCharacterOfPosition : (pos: number) => ts.LineAndCharacter, Symbol(ts.SourceFile.getLineAndCharacterOfPosition, Decl(typescript.d.ts, 1286 , 26))
241241>sourceFile : ts.SourceFile, Symbol(sourceFile, Decl(APISample_linter.ts, 13, 23))
242- >getLineAndCharacterOfPosition : (pos: number) => ts.LineAndCharacter, Symbol(ts.SourceFile.getLineAndCharacterOfPosition, Decl(typescript.d.ts, 1290 , 26))
242+ >getLineAndCharacterOfPosition : (pos: number) => ts.LineAndCharacter, Symbol(ts.SourceFile.getLineAndCharacterOfPosition, Decl(typescript.d.ts, 1286 , 26))
243243>node.getStart() : number
244- >node.getStart : (sourceFile?: ts.SourceFile) => number, Symbol(ts.Node.getStart, Decl(typescript.d.ts, 1254 , 53))
244+ >node.getStart : (sourceFile?: ts.SourceFile) => number, Symbol(ts.Node.getStart, Decl(typescript.d.ts, 1250 , 53))
245245>node : ts.Node, Symbol(node, Decl(APISample_linter.ts, 50, 20))
246- >getStart : (sourceFile?: ts.SourceFile) => number, Symbol(ts.Node.getStart, Decl(typescript.d.ts, 1254 , 53))
246+ >getStart : (sourceFile?: ts.SourceFile) => number, Symbol(ts.Node.getStart, Decl(typescript.d.ts, 1250 , 53))
247247
248248 console.log(`${sourceFile.fileName} (${line + 1},${character + 1}): ${message}`);
249249>console.log(`${sourceFile.fileName} (${line + 1},${character + 1}): ${message}`) : any
@@ -286,9 +286,9 @@ fileNames.forEach(fileName => {
286286 let sourceFile = ts.createSourceFile(fileName, readFileSync(fileName).toString(), ts.ScriptTarget.ES6, /*setParentNodes */ true);
287287>sourceFile : ts.SourceFile, Symbol(sourceFile, Decl(APISample_linter.ts, 59, 7))
288288>ts.createSourceFile(fileName, readFileSync(fileName).toString(), ts.ScriptTarget.ES6, /*setParentNodes */ true) : ts.SourceFile
289- >ts.createSourceFile : (fileName: string, sourceText: string, languageVersion: ts.ScriptTarget, setParentNodes?: boolean) => ts.SourceFile, Symbol(ts.createSourceFile, Decl(typescript.d.ts, 1218, 62 ))
289+ >ts.createSourceFile : (fileName: string, sourceText: string, languageVersion: ts.ScriptTarget, setParentNodes?: boolean) => ts.SourceFile, Symbol(ts.createSourceFile, Decl(typescript.d.ts, 1215, 107 ))
290290>ts : typeof ts, Symbol(ts, Decl(APISample_linter.ts, 11, 6))
291- >createSourceFile : (fileName: string, sourceText: string, languageVersion: ts.ScriptTarget, setParentNodes?: boolean) => ts.SourceFile, Symbol(ts.createSourceFile, Decl(typescript.d.ts, 1218, 62 ))
291+ >createSourceFile : (fileName: string, sourceText: string, languageVersion: ts.ScriptTarget, setParentNodes?: boolean) => ts.SourceFile, Symbol(ts.createSourceFile, Decl(typescript.d.ts, 1215, 107 ))
292292>fileName : any, Symbol(fileName, Decl(APISample_linter.ts, 57, 18))
293293>readFileSync(fileName).toString() : any
294294>readFileSync(fileName).toString : any
0 commit comments