TextDocumentItem

langoustine.lsp.structures$.TextDocumentItem
See theTextDocumentItem companion object
case class TextDocumentItem(uri: DocumentUri, languageId: String, version: Int, text: String)

An item to transfer a text document from the client to the server.

Attributes

languageId

The text document's language identifier.

text

The content of the opened text document.

uri

The text document's uri.

version

The version number of this document (it will increase after each change, including undo/redo).

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product