Index: src/rewriter.cc |
diff --git a/src/rewriter.cc b/src/rewriter.cc |
index 02907de60eb98d69f529b20a48d2aa305d2b5d86..44fe0504e586a6fadff6f12e065802f5433d74d1 100644 |
--- a/src/rewriter.cc |
+++ b/src/rewriter.cc |
@@ -253,7 +253,7 @@ bool Rewriter::Rewrite(CompilationInfo* info) { |
ZoneList<Statement*>* body = function->body(); |
if (!body->is_empty()) { |
Variable* result = scope->NewTemporary( |
- info->isolate()->factory()->result_symbol()); |
+ info->isolate()->factory()->result_string()); |
Processor processor(result, info->zone()); |
processor.Process(body); |
if (processor.HasStackOverflow()) return false; |