Index: src/parser.cc |
diff --git a/src/parser.cc b/src/parser.cc |
index 5704cb805d84799981b6ebbee95bd460173bc29a..bb166bd5a77a450bc4f8a512ba57aac50a3b9f59 100644 |
--- a/src/parser.cc |
+++ b/src/parser.cc |
@@ -2156,6 +2156,7 @@ TryStatement* Parser::ParseTryStatement(bool* ok) { |
top_scope_ = catch_scope; |
inner_body = ParseBlock(NULL, CHECK_OK); |
top_scope_ = saved_scope; |
+ if(catch_scope->calls_eval()) top_scope_->RecordEvalCall(); |
Kevin Millikin (Chromium)
2011/07/28 08:53:40
Style nit: there should be a space after the keywo
Steven
2011/07/28 11:12:12
Removed.
On 2011/07/28 08:53:40, Kevin Millikin wr
|
} |
} |