Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unneeded ExportType and ExportNamespace flags #16766

Merged
1 commit merged into from
Jul 13, 2017
Merged

Conversation

ghost
Copy link

@ghost ghost commented Jun 27, 2017

The only use of these flags was actually re-using them for a different purpose; replaced that with a more specific enum.
I had noticed in #16742 that checking for SymbolFlags.Export was not a reliable way of knowing whether exportSymbol will be present, since we now set SymbolFlags.Export on CommonJS exports too.

@ghost ghost requested a review from sandersn July 13, 2017 14:13
@ghost ghost force-pushed the symbolFlags_export branch from 8594005 to 0df3263 Compare July 13, 2017 14:17
@ghost ghost force-pushed the symbolFlags_export branch from 0df3263 to ffcb546 Compare July 13, 2017 14:19
Copy link
Member

@sandersn sandersn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One question

ExportType = 1 << 1,
ExportNamespace = 1 << 2,
}
function getDeclarationSpaces(d: Declaration): DeclarationSpaces {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is this called? Why doesn't it have to change to accommodate the new enum?

Copy link
Author

@ghost ghost Jul 13, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is internal to checkExportsOnMergedDeclarations. It was just re-using the SymbolFlags enum, but these weren't really symbol flags. So I just gave it its own enum.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind, I missed the call on line 18827 (search and context weren't easy to get on the bus). Now it makes sense.

@ghost ghost merged commit c6a6467 into master Jul 13, 2017
@ghost ghost deleted the symbolFlags_export branch July 13, 2017 16:21
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
This pull request was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants