12 references to DidChange
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (12)
DocumentChanges\DocumentChangesTests.cs (9)
54await DidChange(testLspServer, locationTyped.Uri, (4, 8, "// hi there")); 146await Assert.ThrowsAnyAsync<StreamJsonRpc.RemoteRpcException>(() => DidChange(testLspServer, locationTyped.Uri, (0, 0, "goo"))); 201await DidChange(testLspServer, locationTyped.Uri, (4, 8, "// hi there")); 236await DidChange(testLspServer, locationTyped.Uri, (4, 8, "// hi there")); 279await DidChange(testLspServer, locationTyped.Uri, (4, 8, "// hi there"), (5, 0, " // this builds on that\r\n")); 318await DidChange(testLspServer, locationTyped.Uri, (4, 8, "// there"), (4, 11, "hi ")); 358await DidChange(testLspServer, locationTyped.Uri, (5, 0, " // this builds on that\r\n"), (4, 8, "// hi there")); 441await DidChange(testLspServer, locationTyped.Uri, (4, 8, "// hi there")); 442await DidChange(testLspServer, locationTyped.Uri, (5, 0, " // this builds on that\r\n"));
DocumentChanges\DocumentChangesTests.WithFindAllReferences.cs (3)
51await DidChange(testLspServer, locationTyped.Uri, (5, 0, "var i = someInt + 1;\r\n")); 60await DidChange(testLspServer, locationTyped.Uri, (10, 0, "int someInt = A.someInt + 1;\r\n")); 70await DidChange(testLspServer, locationTyped.Uri, (13, 0, "var j = someInt + A.someInt;\r\n"));