| 57 | using Label = TypeChecker::Label; |
| 58 | size_t type_stack_size() const { return typechecker_.type_stack_size(); } |
| 59 | Result GetLabel(Index depth, Label** out_label) { |
| 60 | return typechecker_.GetLabel(depth, out_label); |
| 61 | } |
| 62 | Result GetCatchCount(Index depth, Index* out_count) { |
| 63 | return typechecker_.GetCatchCount(depth, out_count); |
| 64 | } |