fix(docs-infra): fix closure warning issue for improper internal flag (#25628)

PR Close #25628
This commit is contained in:
Matias Niemelä 2018-08-22 18:21:43 -07:00
parent eb1fe19088
commit 668bfcec9d
1 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,7 @@ export class StaticSymbolResolver {
}
}
/* @internal */
/** @internal */
ignoreErrorsFor<T>(cb: () => T) {
const recorder = this.errorRecorder;
this.errorRecorder = () => {};
@ -546,4 +546,4 @@ export function unwrapResolvedMetadata(metadata: any): any {
return metadata.symbol;
}
return metadata;
}
}