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

Unified Diff: src/parsing/parser-base.h

Issue 2197543002: Quick fix: nullify Isolate in background parsing slightly later. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: a better fix Created 4 years, 5 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/background-parsing-task.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/parser-base.h
diff --git a/src/parsing/parser-base.h b/src/parsing/parser-base.h
index 000b606a9549570b50ca9429633a5d88e6dbbf3f..7ef10ebd270d137ca3d4bcc5e811d13b7b7e303e 100644
--- a/src/parsing/parser-base.h
+++ b/src/parsing/parser-base.h
@@ -252,6 +252,8 @@ class ParserBase : public Traits {
uintptr_t stack_limit() const { return stack_limit_; }
+ void set_stack_limit(uintptr_t stack_limit) { stack_limit_ = stack_limit; }
+
protected:
enum AllowRestrictedIdentifiers {
kAllowRestrictedIdentifiers,
« no previous file with comments | « src/background-parsing-task.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698