Is the given module one compiled by mypyc?
(self, module: str)
| 229 | return FuncSignature(args, ret) |
| 230 | |
| 231 | def is_native_module(self, module: str) -> bool: |
| 232 | """Is the given module one compiled by mypyc?""" |
| 233 | return module in self.group_map |
| 234 | |
| 235 | def is_native_ref_expr(self, expr: RefExpr) -> bool: |
| 236 | if expr.node is None: |
no outgoing calls
no test coverage detected