parseUtf16CodeUnits method
TreeSitterTree
parseUtf16CodeUnits(
- List<
int> codeUnits, { - TreeSitterTree? oldTree,
- Iterable<
TreeSitterInputEdit> edits = const [], - bool annotateLocals = true,
Parses UTF-16 code units and reports public node bytes in UTF-16 bytes.
Implementation
TreeSitterTree parseUtf16CodeUnits(
List<int> codeUnits, {
TreeSitterTree? oldTree,
Iterable<TreeSitterInputEdit> edits = const [],
bool annotateLocals = true,
}) => parseUtf16LeCodeUnits(
codeUnits,
oldTree: oldTree,
edits: edits,
annotateLocals: annotateLocals,
);