Changeset 32652 in webkit for trunk/JavaScriptCore/kjs/ExecState.cpp
- Timestamp:
- Apr 28, 2008, 11:22:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ExecState.cpp
r31746 r32652 34 34 namespace KJS { 35 35 36 static inline List* globalEmptyList()37 {38 static List staticEmptyList;39 return &staticEmptyList;40 }41 42 36 // ECMA 10.2 43 37 … … 46 40 : m_globalObject(globalObject) 47 41 , m_exception(0) 48 , m_propertyNames(CommonIdentifiers::shared())49 , m_emptyList(globalEmptyList())50 42 , m_callingExec(0) 43 , m_perThreadData(globalObject->perThreadData()) 51 44 , m_scopeNode(0) 52 45 , m_function(0) … … 68 61 : m_globalObject(globalObject) 69 62 , m_exception(0) 70 , m_propertyNames(CommonIdentifiers::shared())71 , m_emptyList(globalEmptyList())72 63 , m_callingExec(0) 64 , m_perThreadData(globalObject->perThreadData()) 73 65 , m_scopeNode(programNode) 74 66 , m_function(0) … … 91 83 : m_globalObject(globalObject) 92 84 , m_exception(0) 93 , m_propertyNames(callingExec->m_propertyNames)94 , m_emptyList(callingExec->m_emptyList)95 85 , m_callingExec(callingExec) 86 , m_perThreadData(callingExec->m_perThreadData) 96 87 , m_scopeNode(evalNode) 97 88 , m_function(0)
Note:
See TracChangeset
for help on using the changeset viewer.