Flattened 'ts.OutliningElementsCollector' to a single declaration.

This commit is contained in:
Daniel Rosenwasser 2015-12-28 17:00:36 -05:00
parent f9eb330b19
commit 51933a231f

View file

@ -1,6 +1,5 @@
/* @internal */
namespace ts {
export namespace OutliningElementsCollector {
namespace ts.OutliningElementsCollector {
export function collectElements(sourceFile: SourceFile): OutliningSpan[] {
const elements: OutliningSpan[] = [];
const collapseText = "...";
@ -177,5 +176,4 @@ namespace ts {
walk(sourceFile);
return elements;
}
}
}