(var: StackItem | Local)
| 213 | pass |
| 214 | |
| 215 | def array_or_scalar(var: StackItem | Local) -> str: |
| 216 | return "array" if var.is_array() else "scalar" |
| 217 | |
| 218 | class Stack: |
| 219 | def __init__(self, check_stack_bounds: bool = False) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…