-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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 A/B option for enabling features in SG docs. #73968
Conversation
@jasonmalinowski ptal (or let me know who you'd prefer review if you're on other stuff right now). |
@@ -384,7 +384,7 @@ private async Task<TestLspServer> CreateTestLspServerAsync(EditorTestWorkspace w | |||
InitializationOptions? options, string? workspaceKind, bool mutatingLspWorkspace, TestComposition? composition = null) | |||
{ | |||
var workspace = new EditorTestWorkspace( | |||
composition ?? Composition, workspaceKind, configurationOptions: new WorkspaceConfigurationOptions(EnableOpeningSourceGeneratedFiles: true), supportsLspMutation: mutatingLspWorkspace); | |||
composition ?? Composition, workspaceKind, configurationOptions: new WorkspaceConfigurationOptions(ValidateCompilationTrackerStates: true), supportsLspMutation: mutatingLspWorkspace); |
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.
why was ValidateCompilationTrackerStates: true added?
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.
it should have been there from teh beginning. it's helpful for tracking down bugs that jason cares about.
Followup to #73965.
SG doc features has been experimental long enough. We've shaken out the issues and can have this just be the norm. This is especially ok now that we have balanced-mode so users can have all these features, without the ide constantly rerunning generators.