Changeset 34412 in webkit for trunk/JavaScriptCore/VM/CodeGenerator.cpp
- Timestamp:
- Jun 6, 2008, 11:03:24 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeGenerator.cpp
r34372 r34412 180 180 , m_continueDepth(0) 181 181 , m_nextVar(-1) 182 , m_propertyNames( CommonIdentifiers::shared())182 , m_propertyNames(&scopeChain.globalObject()->globalExec()->propertyNames()) 183 183 { 184 184 // Global code can inherit previously defined symbols. … … 238 238 , m_continueDepth(0) 239 239 , m_nextVar(-1) 240 , m_propertyNames( CommonIdentifiers::shared())240 , m_propertyNames(&scopeChain.globalObject()->globalExec()->propertyNames()) 241 241 { 242 242 const Node::FunctionStack& functionStack = functionBody->functionStack(); … … 285 285 , m_continueDepth(0) 286 286 , m_nextVar(-1) 287 , m_propertyNames( CommonIdentifiers::shared())287 , m_propertyNames(&scopeChain.globalObject()->globalExec()->propertyNames()) 288 288 { 289 289 m_codeBlock->numVars = 1; // Allocate space for "this"
Note:
See TracChangeset
for help on using the changeset viewer.