parseUtf16BeWithOptions method

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

Implementation

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