Index: src/fast-codegen.cc |
=================================================================== |
--- src/fast-codegen.cc (revision 3068) |
+++ src/fast-codegen.cc (working copy) |
@@ -163,6 +163,14 @@ |
} |
+void FastCodeGenerator::VisitVariableProxy(VariableProxy* expr) { |
+ Comment cmnt(masm_, "[ VariableProxy"); |
+ Expression* rewrite = expr->var()->rewrite(); |
+ ASSERT(rewrite != NULL); |
+ Visit(rewrite); |
+} |
+ |
+ |
void FastCodeGenerator::VisitRegExpLiteral(RegExpLiteral* expr) { |
UNREACHABLE(); |
} |