-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Do less work computing diff-merge results in the common case. #73430
Conversation
…iffMergingSession.cs
less work Simplify Fix test Add back Simplify Fix rename lint
@@ -5769,7 +5769,7 @@ public class Goo | |||
{ | |||
public void Bar() | |||
{ | |||
var target = new List<object;gt>(); | |||
var target = new List<object>(); |
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.
tests were wonky.
appliedChanges = await AddDocumentMergeChangesAsync( | ||
oldSolution.GetDocument(documentId), | ||
newSolution.GetDocument(documentId), | ||
[.. appliedChanges], |
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.
this was converting an IA into a list, that was never mutated. made the input/output entirely IA bases.
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.
Followup to #73424