@@ -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, 1261 , 5))
25+ >SourceFile : ts.SourceFile, Symbol(ts.SourceFile, Decl(typescript.d.ts, 740, 5), Decl(typescript.d.ts, 1262 , 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, 1221 , 32))
36+ >Node : ts.Node, Symbol(ts.Node, Decl(typescript.d.ts, 296, 5), Decl(typescript.d.ts, 1222 , 32))
3737
3838 switch (node.kind) {
3939>node.kind : ts.SyntaxKind, Symbol(ts.Node.kind, Decl(typescript.d.ts, 297, 38))
@@ -219,9 +219,9 @@ export function delint(sourceFile: ts.SourceFile) {
219219
220220 ts.forEachChild(node, delintNode);
221221>ts.forEachChild(node, delintNode) : void
222- >ts.forEachChild : <T>(node: ts.Node, cbNode: (node: ts.Node) => T, cbNodeArray?: (nodes: ts.Node[]) => T) => T, Symbol(ts.forEachChild, Decl(typescript.d.ts, 1186 , 48))
222+ >ts.forEachChild : <T>(node: ts.Node, cbNode: (node: ts.Node) => T, cbNodeArray?: (nodes: ts.Node[]) => T) => T, Symbol(ts.forEachChild, Decl(typescript.d.ts, 1187 , 48))
223223>ts : typeof ts, Symbol(ts, Decl(APISample_linter.ts, 11, 6))
224- >forEachChild : <T>(node: ts.Node, cbNode: (node: ts.Node) => T, cbNodeArray?: (nodes: ts.Node[]) => T) => T, Symbol(ts.forEachChild, Decl(typescript.d.ts, 1186 , 48))
224+ >forEachChild : <T>(node: ts.Node, cbNode: (node: ts.Node) => T, cbNodeArray?: (nodes: ts.Node[]) => T) => T, Symbol(ts.forEachChild, Decl(typescript.d.ts, 1187 , 48))
225225>node : ts.Node, Symbol(node, Decl(APISample_linter.ts, 16, 24))
226226>delintNode : (node: ts.Node) => void, Symbol(delintNode, Decl(APISample_linter.ts, 14, 27))
227227 }
@@ -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, 1221 , 32))
233+ >Node : ts.Node, Symbol(ts.Node, Decl(typescript.d.ts, 296, 5), Decl(typescript.d.ts, 1222 , 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, 1263 , 46))
240+ >sourceFile.getLineAndCharacterOfPosition : (pos: number) => ts.LineAndCharacter, Symbol(ts.SourceFile.getLineAndCharacterOfPosition, Decl(typescript.d.ts, 1264 , 46))
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, 1263 , 46))
242+ >getLineAndCharacterOfPosition : (pos: number) => ts.LineAndCharacter, Symbol(ts.SourceFile.getLineAndCharacterOfPosition, Decl(typescript.d.ts, 1264 , 46))
243243>node.getStart() : number
244- >node.getStart : (sourceFile?: ts.SourceFile) => number, Symbol(ts.Node.getStart, Decl(typescript.d.ts, 1226 , 53))
244+ >node.getStart : (sourceFile?: ts.SourceFile) => number, Symbol(ts.Node.getStart, Decl(typescript.d.ts, 1227 , 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, 1226 , 53))
246+ >getStart : (sourceFile?: ts.SourceFile) => number, Symbol(ts.Node.getStart, Decl(typescript.d.ts, 1227 , 53))
247247
248248 console.log(`${sourceFile.fileName} (${line + 1},${character + 1}): ${message}`);
249249>console.log(`${sourceFile.fileName} (${line + 1},${character + 1}): ${message}`) : any
@@ -286,21 +286,21 @@ 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, 1190 , 62))
289+ >ts.createSourceFile : (fileName: string, sourceText: string, languageVersion: ts.ScriptTarget, setParentNodes?: boolean) => ts.SourceFile, Symbol(ts.createSourceFile, Decl(typescript.d.ts, 1191 , 62))
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, 1190 , 62))
291+ >createSourceFile : (fileName: string, sourceText: string, languageVersion: ts.ScriptTarget, setParentNodes?: boolean) => ts.SourceFile, Symbol(ts.createSourceFile, Decl(typescript.d.ts, 1191 , 62))
292292>fileName : any, Symbol(fileName, Decl(APISample_linter.ts, 57, 18))
293293>readFileSync(fileName).toString() : any
294294>readFileSync(fileName).toString : any
295295>readFileSync(fileName) : any
296296>readFileSync : any, Symbol(readFileSync, Decl(APISample_linter.ts, 9, 11))
297297>fileName : any, Symbol(fileName, Decl(APISample_linter.ts, 57, 18))
298298>toString : any
299- >ts.ScriptTarget.ES6 : ts.ScriptTarget, Symbol(ts.ScriptTarget.ES6, Decl(typescript.d.ts, 1118 , 16))
300- >ts.ScriptTarget : typeof ts.ScriptTarget, Symbol(ts.ScriptTarget, Decl(typescript.d.ts, 1115 , 5))
299+ >ts.ScriptTarget.ES6 : ts.ScriptTarget, Symbol(ts.ScriptTarget.ES6, Decl(typescript.d.ts, 1119 , 16))
300+ >ts.ScriptTarget : typeof ts.ScriptTarget, Symbol(ts.ScriptTarget, Decl(typescript.d.ts, 1116 , 5))
301301>ts : typeof ts, Symbol(ts, Decl(APISample_linter.ts, 11, 6))
302- >ScriptTarget : typeof ts.ScriptTarget, Symbol(ts.ScriptTarget, Decl(typescript.d.ts, 1115 , 5))
303- >ES6 : ts.ScriptTarget, Symbol(ts.ScriptTarget.ES6, Decl(typescript.d.ts, 1118 , 16))
302+ >ScriptTarget : typeof ts.ScriptTarget, Symbol(ts.ScriptTarget, Decl(typescript.d.ts, 1116 , 5))
303+ >ES6 : ts.ScriptTarget, Symbol(ts.ScriptTarget.ES6, Decl(typescript.d.ts, 1119 , 16))
304304>true : boolean
305305
306306 // delint it
0 commit comments