Changeset 90437 in webkit for trunk/Source/JavaScriptCore/runtime/JSFunction.h
- Timestamp:
- Jul 5, 2011, 11:35:44 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSFunction.h
r90423 r90437 64 64 return m_scopeChain.get(); 65 65 } 66 // This method may be called for host functins, in which case it 67 // will return an arbitrary value. This should only be used for 68 // optimized paths in which the return value does not matter for 69 // host functions, and checking whether the function is a host 70 // function is deemed too expensive. 71 ScopeChainNode* scopeUnchecked() 72 { 73 return m_scopeChain.get(); 74 } 66 75 void setScope(JSGlobalData& globalData, ScopeChainNode* scopeChain) 67 76 {
Note:
See TracChangeset
for help on using the changeset viewer.