Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Unified Diff: src/interpreter/bytecode-array-builder.h

Issue 2450243002: [ignition] Add a property call bytecode (Closed)
Patch Set: Fix tests Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/interpreter/bytecode-array-builder.h
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h
index 93fd6c47e83e8c1404604966508f884ca06f5cf5..c581cc19e1539fd9a32224cd37ff1475a02048a7 100644
--- a/src/interpreter/bytecode-array-builder.h
+++ b/src/interpreter/bytecode-array-builder.h
@@ -191,7 +191,8 @@ class V8_EXPORT_PRIVATE BytecodeArrayBuilder final
// feedback vector.
BytecodeArrayBuilder& Call(
Register callable, RegisterList args, int feedback_slot,
- TailCallMode tail_call_mode = TailCallMode::kDisallow);
+ TailCallMode tail_call_mode = TailCallMode::kDisallow,
+ Call::CallType call_type = Call::OTHER_CALL);
rmcilroy 2016/10/26 16:20:16 I don't think we should have a default value for t
Leszek Swirski 2016/10/27 09:08:24 Done.
// Call the new operator. The accumulator holds the |new_target|.
// The |constructor| is in a register and arguments are in |args|.

Powered by Google App Engine
This is Rietveld 408576698