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

Unified Diff: src/code-stubs.cc

Issue 1272673003: [es6] Re-implement rest parameters via desugaring. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Oops. Created 5 years, 3 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/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 7c75568c77e45ea464c3c7a8db00f07312a06a58..e2838fc5ccc2592ac8d072cac23218a7f9ba8924 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -858,11 +858,6 @@ void ArgumentsAccessStub::Generate(MacroAssembler* masm) {
}
-void RestParamAccessStub::Generate(MacroAssembler* masm) {
- GenerateNew(masm);
-}
-
-
void ArgumentsAccessStub::PrintName(std::ostream& os) const { // NOLINT
os << "ArgumentsAccessStub_";
switch (type()) {
@@ -883,11 +878,6 @@ void ArgumentsAccessStub::PrintName(std::ostream& os) const { // NOLINT
}
-void RestParamAccessStub::PrintName(std::ostream& os) const { // NOLINT
- os << "RestParamAccessStub_";
-}
-
-
void CallFunctionStub::PrintName(std::ostream& os) const { // NOLINT
os << "CallFunctionStub_Args" << argc();
}
« no previous file with comments | « src/code-stubs.h ('k') | src/compiler/ast-graph-builder.h » ('j') | src/parser.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698