- 
                Notifications
    You must be signed in to change notification settings 
- Fork 834
Fix for missing parse diagnostics in TransparentCompiler.ParseAndCheckProject #18366
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
| ❗ Release notes required
 
 | 
| Old IncrementalBuilder just appended parse errors here: 
 I'm not sure how parse errors are handled by Transparent Compiler. They do surface correctly in the IDE, but the code path of this test goes through  
 and it looks like it ignores parse errors (?) | 
| 
 Yes. The parse error is still correctly returned here 
 but doesn't make it to the project results. | 
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.
Thank you Martin!
Description
Fixes #18371.
TransparentCompiler.ParseAndCheckProject does not return any parse errors (while the BackgroundCompiler counterpart does).
This PR fixes this and adds a test.