parseUtf16With method

TreeSitterTree parseUtf16With(
  1. TreeSitterUtf16InputCallback read, {
  2. TreeSitterTree? oldTree,
  3. Iterable<TreeSitterInputEdit> edits = const [],
  4. 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,
);