(t *testing.T, w io.Writer)
| 241 | } |
| 242 | |
| 243 | func (f *FourslashTest) printStateDiff(t *testing.T, w io.Writer) { |
| 244 | if !f.stateBaseline.isInitialized { |
| 245 | return |
| 246 | } |
| 247 | session := f.client.Server.Session() |
| 248 | snapshot := session.Snapshot() |
| 249 | |
| 250 | f.printProjectsDiff(t, snapshot, w) |
| 251 | f.printOpenFilesDiff(t, snapshot, w) |
| 252 | f.printConfigFileRegistryDiff(t, snapshot, w) |
| 253 | } |
| 254 | |
| 255 | func (f *FourslashTest) printProjectsDiff(t *testing.T, snapshot *project.Snapshot, w io.Writer) { |
| 256 | t.Helper() |
no test coverage detected