parseUtf16With method
TreeSitterTree
parseUtf16With(
- TreeSitterUtf16InputCallback read, {
- TreeSitterTree? oldTree,
- Iterable<
TreeSitterInputEdit> edits = const [], - bool annotateLocals = true,
Parses callback-driven UTF-16 input until the callback returns empty.
Implementation
TreeSitterTree parseUtf16With(
TreeSitterUtf16InputCallback read, {
TreeSitterTree? oldTree,
Iterable<TreeSitterInputEdit> edits = const [],
bool annotateLocals = true,
}) => parseUtf16LeWith(
read,
oldTree: oldTree,
edits: edits,
annotateLocals: annotateLocals,
);