(t *testing.T)
| 98 | } |
| 99 | |
| 100 | func (f *FourslashTest) serializedState(t *testing.T) string { |
| 101 | t.Helper() |
| 102 | |
| 103 | var builder strings.Builder |
| 104 | f.stateBaseline.fsDiffer.BaselineFSwithDiff(&builder) |
| 105 | if strings.TrimSpace(builder.String()) == "" { |
| 106 | builder.Reset() |
| 107 | } |
| 108 | |
| 109 | f.printStateDiff(t, &builder) |
| 110 | return builder.String() |
| 111 | } |
| 112 | |
| 113 | type projectInfo = *compiler.Program |
| 114 |
no test coverage detected