* Returns the document for the given URI. Returns undefined if * the document is not mananged by this instance. * * @param uri The text document's URI to retrieve. * @return the text document or `undefined`.
(uri: string)
| 208 | * @return the text document or `undefined`. |
| 209 | */ |
| 210 | public get(uri: string): TextDocument { |
| 211 | return this._documents[uri]; |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * Returns all text documents managed by this instance. |
no outgoing calls
no test coverage detected