MCPcopy Index your code
hub / github.com/SourceCode-AI/aura / _match_any_of

Method _match_any_of

aura/pattern_matching.py:265–269  ·  view source on GitHub ↗
(self, node, other: ASTPattern.AnyOf)

Source from the content-addressed store, hash-verified

263 return False # TODO
264
265 def _match_any_of(self, node, other: ASTPattern.AnyOf) -> bool:
266 for sub_pattern in other:
267 if self.match(node, sub_pattern):
268 return True
269 return False
270
271
272 class AnyOf(list):

Callers 1

matchMethod · 0.95

Calls 1

matchMethod · 0.95

Tested by

no test coverage detected