From: littledan Date: Tue, 11 Aug 2015 18:43:34 +0000 (-0700) Subject: Delete outdated comment about a bug which was fixed three years ago X-Git-Tag: upstream/4.7.83~922 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8f733867aca704207cff11098852200a602ce364;p=platform%2Fupstream%2Fv8.git Delete outdated comment about a bug which was fixed three years ago R=adamk BUG=chromium:135066 LOG=N Review URL: https://codereview.chromium.org/1279203002 Cr-Commit-Position: refs/heads/master@{#30118} --- diff --git a/src/parser.cc b/src/parser.cc index 45202cb3a..8299e2974 100644 --- a/src/parser.cc +++ b/src/parser.cc @@ -1337,10 +1337,7 @@ void* Parser::ParseStatementList(ZoneList* body, int end_token, // Because declarations in strict eval code don't leak into the scope // of the eval call, it is likely that functions declared in strict // eval code will be used within the eval code, so lazy parsing is - // probably not a win. Also, resolution of "var" bindings defined in - // strict eval code from within nested functions is currently broken - // with the pre-parser; lazy parsing of strict eval code causes - // regress/regress-crbug-135066.js to fail. + // probably not a win. if (scope_->is_eval_scope()) mode_ = PARSE_EAGERLY; } else if (literal->raw_value()->AsString() == ast_value_factory()->use_asm_string() &&