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

Unified Diff: src/full-codegen.cc

Issue 798873006: First simple implementation of class literals in TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Split cleanup into separate CL. Created 5 years, 11 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/full-codegen.cc
diff --git a/src/full-codegen.cc b/src/full-codegen.cc
index cb8f4aafcd9cd7274f032f14505f5dd028725252..661abd1a39ecd8b8125cf712543abee797ac76eb 100644
--- a/src/full-codegen.cc
+++ b/src/full-codegen.cc
@@ -1582,8 +1582,7 @@ void FullCodeGenerator::VisitClassLiteral(ClassLiteral* lit) {
{
EnterBlockScopeIfNeeded block_scope_state(
- this, lit->scope(), BailoutId::None(), BailoutId::None(),
- BailoutId::None());
+ this, lit->scope(), lit->EntryId(), lit->DeclsId(), lit->ExitId());
if (lit->raw_name() != NULL) {
__ Push(lit->name());

Powered by Google App Engine
This is Rietveld 408576698