ci: add a change

This commit is contained in:
Filipe Silva 2019-01-06 15:00:05 +00:00
parent 1dd11c99cc
commit 8d5ab908fc

View File

@ -112,7 +112,7 @@ class ResolvedDeclarationEmitter {
emit(): string {
const sourceFile = this.program.getSourceFiles().find(sf => sf.fileName === this.fileName);
if (!sourceFile) {
throw new Error(`Source file "${this.fileName}" not found`);
throw new Error(`Source file "${this.fileName}" not found `);
}
let output: string[] = [];
@ -441,4 +441,4 @@ function applyDefaultTagOptions(tagOptions: JsDocTagOptions | undefined): JsDocT
function getName(node: any) {
return '`' + (node.name && node.name.text ? node.name.text : node.getText()) + '`';
}
}