Creates a document with no URI and no language ID and copies the content into the text buffer using setContent.
auto doc = Document.nullDocument(`import std.stdio;`); assert(!doc.languageId.length); assert(doc.version_ == 0); assert(!doc.uri.length); assert(doc.rawText == "import std.stdio;");
See Implementation
Creates a document with no URI and no language ID and copies the content into the text buffer using setContent.