Extract code for getting syntactic document highlights into its own function.

This commit is contained in:
Cyrus Najmabadi
2015-04-08 21:59:50 -07:00
parent 21a5611839
commit 6dee32a703
4 changed files with 427 additions and 324 deletions

View File

@@ -468,6 +468,10 @@ module ts.server {
throw new Error("Not Implemented Yet.");
}
getDocumentHighlights(fileName: string, position: number): DocumentHighlights[] {
throw new Error("Not Implemented Yet.");
}
getOutliningSpans(fileName: string): OutliningSpan[] {
throw new Error("Not Implemented Yet.");
}