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