-
Notifications
You must be signed in to change notification settings - Fork 472
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 source phase resolution time negative error types #4194
base: main
Are you sure you want to change the base?
Conversation
|
||
import source from '<do not resolve>'; | ||
import from from '<do not resolve>'; | ||
import source from '<module source>'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should avoid using <module source>
in non-source imports.
Instead of doing this, can we just remove This is to avoid having to require another flag, which may prevent some implementations from running the test. |
4913f78
to
3756e28
Compare
<module source>
specifier
Updated. Thanks for suggestion, sounds like a good alternative to me. |
3756e28
to
978e07f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, if Error
is something valid to write there to mean "any error"
The source phase import binding name tests can be tested more easily with the resolution time negative error types removed, as they are host defined errors.
Refs: #4121 (comment)