-
Notifications
You must be signed in to change notification settings - Fork 450
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
Gate future features behind an @@experimental directive. #6262
Comments
Here's a test of how easily one can pick up the meaning of this as well as the Interactive session with gpt3.5.
This ReScript code defines a function called Here's a breakdown of the code:
In summary, this code defines a ReScript function
The The Here are a couple of options commonly used with
It's important to note that features enabled using The |
Should this be accompanied by an option in the config as well? So things can be turned on project wide. |
Yes |
probably something for the upcoming |
Actually we could merge the The other natural one is this #6102 as it's ready to do but we don't want to cause too many output changes for people who try out v11. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Sometimes features in the compiler are ready ahead of time, but for some reason they belong to the next version of the compiler.
Instead of letting them leave in some branch, that needs rebasing and maintenance, they can be gated under an
@@future
directive.The idea is that
will enable all the future features.
And one can select individual one using
@@future(feat1, feat2)
The text was updated successfully, but these errors were encountered: