Changeset 58986 in webkit for trunk/JavaScriptCore/runtime/JSActivation.cpp
- Timestamp:
- May 7, 2010, 5:05:00 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSActivation.cpp
r55401 r58986 135 135 } 136 136 137 bool JSActivation::isDynamicScope( ) const137 bool JSActivation::isDynamicScope(bool& requiresDynamicChecks) const 138 138 { 139 return d()->functionExecutable->usesEval(); 139 requiresDynamicChecks = d()->functionExecutable->usesEval(); 140 return false; 140 141 } 141 142
Note:
See TracChangeset
for help on using the changeset viewer.