| 884 | } |
| 885 | |
| 886 | Result TypeChecker::OnLoop(const TypeVector& param_types, |
| 887 | const TypeVector& result_types) { |
| 888 | Result result = PopAndCheckSignature(param_types, "loop"); |
| 889 | PushLabel(LabelType::Loop, param_types, result_types); |
| 890 | PushTypes(param_types); |
| 891 | return result; |
| 892 | } |
| 893 | |
| 894 | Result TypeChecker::OnMemoryCopy(const Limits& dst_limits, |
| 895 | const Limits& src_limits) { |
no outgoing calls
no test coverage detected