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

Unified Diff: src/hydrogen.cc

Issue 480543002: Parse 'super' keyword. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Patch for review Created 6 years, 4 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/hydrogen.cc
diff --git a/src/hydrogen.cc b/src/hydrogen.cc
index 3ddd7cce83d1fb7464cf2c476324731ae0dff23f..f349db22a2da4a83dfb81639e5af92c1dcb599f4 100644
--- a/src/hydrogen.cc
+++ b/src/hydrogen.cc
@@ -11183,6 +11183,11 @@ void HOptimizedGraphBuilder::VisitThisFunction(ThisFunction* expr) {
}
+void HOptimizedGraphBuilder::VisitSuperReference(SuperReference* expr) {
+ UNREACHABLE();
+}
+
+
void HOptimizedGraphBuilder::VisitDeclarations(
ZoneList<Declaration*>* declarations) {
DCHECK(globals_.is_empty());

Powered by Google App Engine
This is Rietveld 408576698