fromNative static method

TreeSitterCaptureQuantifier fromNative(
  1. int value
)

Implementation

static TreeSitterCaptureQuantifier fromNative(int value) => switch (value) {
  0 => zero,
  1 => zeroOrOne,
  2 => zeroOrMore,
  3 => one,
  4 => oneOrMore,
  _ => throw ArgumentError.value(value, 'value', 'Unrecognized quantifier'),
};