diff options
Diffstat (limited to 'Source/JavaScriptCore/parser/NodeInfo.h')
-rw-r--r-- | Source/JavaScriptCore/parser/NodeInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/parser/NodeInfo.h b/Source/JavaScriptCore/parser/NodeInfo.h index e0d4ffec4..4853aec42 100644 --- a/Source/JavaScriptCore/parser/NodeInfo.h +++ b/Source/JavaScriptCore/parser/NodeInfo.h @@ -26,7 +26,7 @@ namespace JSC { template <typename T> struct NodeInfo { T m_node; - ScopeFlags m_scopeFlags; + CodeFeatures m_features; int m_numConstants; }; @@ -44,7 +44,7 @@ namespace JSC { T m_node; ParserArenaData<DeclarationStacks::VarStack>* m_varDeclarations; ParserArenaData<DeclarationStacks::FunctionStack>* m_funcDeclarations; - ScopeFlags m_scopeFlags; + CodeFeatures m_features; int m_numConstants; }; |