Expand description
Pattern matching engine.
Given a Pattern and a source file, this module finds
all locations where the before_template matches. Each match records the
byte range, position, matched text, and variable bindings so that the
TransformApplier can
later produce the replacement text.
Structsยง
- Match
- A single match found in source code.
- Pattern
Matcher - Finds occurrences of a
Patternin source code. - Position
- A line/column position in source code.