-
Notifications
You must be signed in to change notification settings - Fork 323
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
Use autoscoping when constructing tag values of suggestion arguments #9259
Comments
Given the problems when we have aliasing constructors in a sum type, could we make it so that the shorthand autoscoped form is only suggested if the constructors are all distinct? Or would it be too complicated to check what the constructors are when generating the suggestions? |
Dmitry Bushev reports a new STANDUP for yesterday (2024-03-05): Progress: Started working on the task. Updated the tag values creation logic to use the autoscope syntax. Added tests. Created draft PR. Fixed some of the flaky visualization tests. Created PR It should be finished by 2024-03-08. Next Day: Next day I will be working on the #9259 task. Continue working on the task |
Dmitry Bushev reports a new STANDUP for today (2024-03-06): Progress: Continue working on the task. Updated the tag values logic to use the autoscope syntax when there is a type ascription in addition to a separate type definition. Tested in gui. Undrafted the PR. More work on the flaky visualization tests. It should be finished by 2024-03-08. Next Day: Next day I will be working on the #9259 task. Continue working on the task |
Dmitry Bushev reports a new STANDUP for yesterday (2024-03-08): Progress: Returned to the task. Updated the PR adding the filesystem commands to the project manager. Added path resolution. Merged the PR. Updated and merged the PR fixing the warnings preview. Was checking how the autoscoping interacts with dynamic widgets in the gui. It should be finished by 2024-03-08. Next Day: Next day I will be working on the #9259 task. Continue working on the task |
Is this waiting for resolution of |
When the argument has an ascribed type its tag values should use the autoscoped constructors feature. If there is a method:
then the
tagValues
forc
argument ofnext
method should be~Zero
,~One
,~Two
and~Many
rather thanCounting.Zero
& co.The text was updated successfully, but these errors were encountered: