Changeset 47405 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Aug 17, 2009, 6:05:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r47304 r47405 351 351 if (JSValue parsedObject = preparser.tryLiteralParse()) 352 352 return parsedObject; 353 354 353 355 354 ScopeChainNode* scopeChain = callFrame->scopeChain(); 356 355 CodeBlock* codeBlock = callFrame->codeBlock(); 357 RefPtr< EvalExecutable> eval = codeBlock->evalCodeCache().get(callFrame, programSource, scopeChain, exceptionValue);356 RefPtr<CacheableEvalExecutable> eval = codeBlock->evalCodeCache().get(callFrame, programSource, scopeChain, exceptionValue); 358 357 359 358 JSValue result = jsUndefined();
Note:
See TracChangeset
for help on using the changeset viewer.