Index: src/interface-descriptors.h |
diff --git a/src/interface-descriptors.h b/src/interface-descriptors.h |
index dcce0afe5c9b127883027c5b61674d1e272bff51..12f5618205040bc5262fae3e39a2444512bce611 100644 |
--- a/src/interface-descriptors.h |
+++ b/src/interface-descriptors.h |
@@ -90,7 +90,8 @@ class PlatformInterfaceDescriptor; |
V(InterpreterDispatch) \ |
V(InterpreterPushArgsAndCall) \ |
V(InterpreterPushArgsAndConstruct) \ |
- V(InterpreterCEntry) |
+ V(InterpreterCEntry) \ |
+ V(ResumeGenerator) |
class CallInterfaceDescriptorData { |
public: |
@@ -822,6 +823,11 @@ class InterpreterCEntryDescriptor : public CallInterfaceDescriptor { |
DECLARE_DESCRIPTOR(InterpreterCEntryDescriptor, CallInterfaceDescriptor) |
}; |
+class ResumeGeneratorDescriptor final : public CallInterfaceDescriptor { |
+ public: |
+ DECLARE_DESCRIPTOR(ResumeGeneratorDescriptor, CallInterfaceDescriptor) |
+}; |
+ |
#undef DECLARE_DESCRIPTOR_WITH_BASE |
#undef DECLARE_DESCRIPTOR |
#undef DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE |