matchesSkipping method

  1. @Deprecated('Use `MatchesParserExtension.allMatches(input, ' 'overlapping: false)` instead')
List<T> matchesSkipping(
  1. String input
)

Returns a list of all successful non-overlapping parses of input.

For example, letter().plus().flatten().matchesSkipping('abc de') results in the list ['abc', 'de'].

Implementation

@Deprecated('Use `MatchesParserExtension.allMatches(input, '
    'overlapping: false)` instead')
List<T> matchesSkipping(String input) =>
    allMatches(input, overlapping: false).toList();