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

Unified Diff: src/objects.h

Issue 2009963002: [modules] Disable HTML-like comments Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Unify behavior for optimized and non-optimized executions Created 4 years, 7 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/objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 8cc551f508bf8635bfd68af77df23de345b1c113..8f9998119f413400cd44b93c96a7ed7e6d88ecf2 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -6816,6 +6816,8 @@ class SharedFunctionInfo: public HeapObject {
// spending time attempting to optimize it again.
DECL_BOOLEAN_ACCESSORS(optimization_disabled)
+ DECL_BOOLEAN_ACCESSORS(within_module)
+
// Indicates the language mode.
inline LanguageMode language_mode();
inline void set_language_mode(LanguageMode language_mode);
@@ -7170,6 +7172,7 @@ class SharedFunctionInfo: public HeapObject {
kDeserialized,
kIsDeclaration,
kCompilerHintsCount, // Pseudo entry
+ kWithinModule,
};
// Add hints for other modes when they're added.
STATIC_ASSERT(LANGUAGE_END == 3);
« no previous file with comments | « src/ast/scopes.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698