Index: src/ast/scopes.h |
diff --git a/src/ast/scopes.h b/src/ast/scopes.h |
index b1e2c2894df4bcf93e063acda6d2e608dcce2df6..a6aace9a064007ad8bfb1e88a293dff8c601fd1b 100644 |
--- a/src/ast/scopes.h |
+++ b/src/ast/scopes.h |
@@ -5,6 +5,7 @@ |
#ifndef V8_AST_SCOPES_H_ |
#define V8_AST_SCOPES_H_ |
+#include "src/base/compiler-specific.h" |
#include "src/base/hashmap.h" |
#include "src/globals.h" |
#include "src/objects.h" |
@@ -62,7 +63,7 @@ enum class AnalyzeMode { kRegular, kDebugger }; |
// and ModuleScope. DeclarationScope is used for any scope that hosts 'var' |
// declarations. This includes script, module, eval, varblock, and function |
// scope. ModuleScope further specializes DeclarationScope. |
-class Scope: public ZoneObject { |
+class V8_EXPORT_PRIVATE Scope : public NON_EXPORTED_BASE(ZoneObject) { |
public: |
// --------------------------------------------------------------------------- |
// Construction |