parseUtf16LeWithOptions method

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

Implementation

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