| 67 | } |
| 68 | |
| 69 | type document struct { |
| 70 | uri uri.URI |
| 71 | identifier protocol.LanguageIdentifier |
| 72 | version int32 |
| 73 | // input is the file as it exists in the editor buffer. |
| 74 | input []byte |
| 75 | parseFn func(force bool) bool |
| 76 | copyFn func() Document |
| 77 | } |
| 78 | |
| 79 | var _ Document = &document{} |
| 80 |
nothing calls this directly
no outgoing calls
no test coverage detected