Revert "Support an optional type annotation on export default statement"

This reverts commit a6a8a96249.
This commit is contained in:
Mohamed Hegazy
2015-03-12 22:52:54 -07:00
parent 55d6e10687
commit afe35c810a
16 changed files with 11 additions and 141 deletions

View File

@@ -173,10 +173,6 @@ module ts.BreakpointResolver {
return textSpan(node, (<ThrowStatement>node).expression);
case SyntaxKind.ExportAssignment:
if (!(<ExportAssignment>node).expression) {
return undefined;
}
// span on export = id
return textSpan(node, (<ExportAssignment>node).expression);