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

Unified Diff: src/objects.h

Issue 911363002: Revert of new classes: implement new.target passing to superclass constructor. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « src/ic/ic.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 3265a981dd80bda320a3c8f8e2758bb1d1f35999..ef8416ae4382dc27e20774b04232e8f2af4ce28d 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -6770,11 +6770,9 @@
inline int length() const;
inline void set_length(int value);
- // [internal formal parameter count]: The declared number of parameters.
- // For subclass constructors, also includes new.target.
- // The size of function's frame is internal_formal_parameter_count + 1.
- inline int internal_formal_parameter_count() const;
- inline void set_internal_formal_parameter_count(int value);
+ // [formal parameter count]: The declared number of parameters.
+ inline int formal_parameter_count() const;
+ inline void set_formal_parameter_count(int value);
// Set the formal parameter count so the function code will be
// called without using argument adaptor frames.
« no previous file with comments | « src/ic/ic.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698