(input: str, matcher: ExpressionMatcher)
| 7 | |
| 8 | |
| 9 | def evaluate(input: str, matcher: ExpressionMatcher) -> bool: |
| 10 | return Expression.compile(input).evaluate(matcher) |
| 11 | |
| 12 | |
| 13 | def test_empty_is_false() -> None: |
no test coverage detected
searching dependent graphs…