return basis.computeExportedLibraries(source);
}
@Override
public HtmlElement computeHtmlElement(Source source) throws AnalysisException {
InstrumentationBuilder instrumentation = Instrumentation.builder("Analysis-computeHtmlElement");
checkThread(instrumentation);
try {
instrumentation.metric("contextId", contextId);
return basis.computeHtmlElement(source);
} catch (AnalysisException e) {
recordAnalysisException(instrumentation, e);
throw e;
} finally {
instrumentation.log();
}
}