(ctx: SuggestContext, *values: str)
| 401 | |
| 402 | |
| 403 | def _token_value_is(ctx: SuggestContext, *values: str) -> bool: |
| 404 | return bool(ctx.token_value and ctx.token_value in values) |
| 405 | |
| 406 | |
| 407 | def _token_is_lparen(ctx: SuggestContext) -> bool: |
no outgoing calls