match the ast node against the signature
(self, value: str)
| 165 | |
| 166 | @lru_cache() |
| 167 | def match_string(self, value: str) -> bool: |
| 168 | """ |
| 169 | match the ast node against the signature |
| 170 | """ |
| 171 | return bool(self._regex.match(value)) |
| 172 | |
| 173 | |
| 174 | class GlobPattern(StringPatternMatcher): |