-
Notifications
You must be signed in to change notification settings - Fork 833
Improve warning for ignored values in sequence expressions - fixes #4228 #4245
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
Conversation
|
I used a new error number so that we can built quickfixes on top of it. |
|
Please, add type of the ignored expressing into the warning message. |
|
Excellent, it's in conjunction with the recent Don's PR which added ignored type names into all warning messages. |
|
@dsyme this is weird: for |
|
@vasily-kirichenko @dsyme another question: I see isListTy and isArrayty but no general isSeqTy. Do we have something like that for TType? |
|
@KevinRansom do you see by any chance why CI build 3 does not see the error message? |
|
Probably the way that text is converted to resources is not quite wired up the same. I will take a look later today. |
|
Thank you.
Am 23.01.2018 20:39 schrieb "Kevin Ransom (msft)" <[email protected]
…:
Probably the way that text is converted to resources is not quite wired up
the same. I will take a look later today.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4245 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AADgNARuI3AnmunRucHE0Fe2zri0Uj35ks5tNjWCgaJpZM4RpTiz>
.
|
|
@forki Okay, I pushed a fix. The reason this happened is because the build failed in the build from source projects. Those guys are for RedHat integration. That build depends on released product, and the build task that converts from txt file to resx and generates the .fs file is not yet in the build of the dotnet cli that they use. Because of this, we just copy the transformed resx and .fs files. As soon as they update their base build tools we will modify the buildfrom source build to use the buildtask. Sorry for the inconvenience ... Kevin |
|
ok cool. so basically I need to touch these 2 files as well and things will be fine? |
|
@forki, yes, until the build from source uses a recent compiler, then it will be automagic like it should be. |
|
ok. this is done. |
|
ping @KevinRansom @dsyme for review |
|
Awesome work, thank you It's possible a similar improvement could be made for async expressions? |

fixes #4228