Chromium Code Reviews

Unified Diff: src/code-stub-assembler.h

Issue 2581503003: [promisehook] Store promise in PromiseReactionJob (Closed)
Patch Set: rebase correctly Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/code-stub-assembler.h
diff --git a/src/code-stub-assembler.h b/src/code-stub-assembler.h
index 63ff66a2e7f73a6cb16e5592358fe7f3b8ca2c49..4086100e0875572fe42664e06709d6759af4af5d 100644
--- a/src/code-stub-assembler.h
+++ b/src/code-stub-assembler.h
@@ -1096,8 +1096,8 @@ class V8_EXPORT_PRIVATE CodeStubAssembler : public compiler::CodeAssembler {
// provides a helper for certain init patterns.
void PromiseSet(Node* promise, Node* status, Node* result);
- Node* AllocatePromiseReactionJobInfo(Node* value, Node* tasks, Node* deferred,
- Node* context);
+ Node* AllocatePromiseReactionJobInfo(Node* value, Node* promise, Node* tasks,
+ Node* deferred, Node* context);
protected:
void DescriptorLookupLinear(Node* unique_name, Node* descriptors, Node* nof,

Powered by Google App Engine