/**
* A parameter literal used in requests to pass a text document and a position inside that document.
*/
struct lsTextDocumentPositionParams
{
// The text document.
lsTextDocumentIdentifier textDocument;
// The position inside the text document.
lsPosition position;
/**
* Legacy property to support protocol version 1.0 requests.
*/
optional<lsDocumentUri> uri;