matches method

Match? matches(
  1. InlineParser parser,
  2. int startMatchPos
)

Test if this syntax matches the current source.

Implementation

Match? matches(InlineParser parser, int startMatchPos)
=> pattern.matchAsPrefix(parser.source, startMatchPos);