TextDocumentItem

case class TextDocumentItem(uri: DocumentUri, languageId: String, version: Int, text: String)

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

Value parameters:
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
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product