parseUtf16BeWith method

TreeSitterTree parseUtf16BeWith(
  1. TreeSitterUtf16InputCallback read, {
  2. TreeSitterTree? oldTree,
  3. Iterable<TreeSitterInputEdit> edits = const [],
  4. bool annotateLocals = true,
})

Implementation

TreeSitterTree parseUtf16BeWith(
  TreeSitterUtf16InputCallback read, {
  TreeSitterTree? oldTree,
  Iterable<TreeSitterInputEdit> edits = const [],
  bool annotateLocals = true,
}) => parseNativeInput(
  _nativeUtf16Input(read, Endian.big),
  oldTree: oldTree,
  edits: edits,
  annotateLocals: annotateLocals,
)!;