(t: AnyType)
| 487 | |
| 488 | |
| 489 | def get_original_any(t: AnyType) -> AnyType: |
| 490 | if t.type_of_any == TypeOfAny.from_another_any: |
| 491 | assert t.source_any |
| 492 | assert t.source_any.type_of_any != TypeOfAny.from_another_any |
| 493 | t = t.source_any |
| 494 | return t |
no outgoing calls
no test coverage detected
searching dependent graphs…