Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(418)

Unified Diff: src/parsing/parser.h

Issue 2417643003: Turn AllowsLazyParsingWithoutUnresolvedVariables into a whitelist stopping at the outer parsed cont… (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ast/scopes.cc ('k') | src/parsing/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/parser.h
diff --git a/src/parsing/parser.h b/src/parsing/parser.h
index 9cda51672bd767a72d2a8ed31c2367a4488cb550..2fde80e16a16eaff183d154e4c8da225e017bb45 100644
--- a/src/parsing/parser.h
+++ b/src/parsing/parser.h
@@ -205,6 +205,11 @@ class Parser : public ParserBase<Parser> {
friend class ParserBase<Parser>;
friend class v8::internal::ExpressionClassifier<ParserTypes<Parser>>;
+ bool AllowsLazyParsingWithoutUnresolvedVariables() const {
+ return scope()->AllowsLazyParsingWithoutUnresolvedVariables(
+ original_scope_);
+ }
+
// Runtime encoding of different completion modes.
enum CompletionKind {
kNormalCompletion,
« no previous file with comments | « src/ast/scopes.cc ('k') | src/parsing/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698