(cls, data: ReadBuffer)
| 3389 | |
| 3390 | @classmethod |
| 3391 | def read(cls, data: ReadBuffer) -> TypeVarTupleExpr: |
| 3392 | assert read_tag(data) == mypy.types.INSTANCE |
| 3393 | fallback = mypy.types.Instance.read(data) |
| 3394 | ret = TypeVarTupleExpr( |
| 3395 | read_str(data), |
| 3396 | read_str(data), |
| 3397 | mypy.types.read_type(data), |
| 3398 | fallback, |
| 3399 | mypy.types.read_type(data), |
| 3400 | read_int(data), |
| 3401 | ) |
| 3402 | assert read_tag(data) == END_TAG |
| 3403 | return ret |
| 3404 | |
| 3405 | |
| 3406 | class TypeAliasExpr(Expression): |
nothing calls this directly
no test coverage detected