Returns the word range at a given line/column position.
Document d; d.setContent(`void main() { writeln("hello world"); }`); assert(d.wordRangeAt(Position(0, 0)) == TextRange(0, 0, 0, 4));
See Implementation
Returns the word range at a given line/column position.