Changeset 43424 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- May 8, 2009, 6:01:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r43401 r43424 48 48 #include "JSNotAnObject.h" 49 49 #include "JSPropertyNameIterator.h" 50 #include "LiteralParser.h" 50 51 #include "JSStaticScopeObject.h" 51 52 #include "JSString.h" … … 337 338 UString programSource = asString(program)->value(); 338 339 340 LiteralParser preparser(callFrame, programSource); 341 if (JSValue parsedObject = preparser.tryLiteralParse()) 342 return parsedObject; 343 344 339 345 ScopeChainNode* scopeChain = callFrame->scopeChain(); 340 346 CodeBlock* codeBlock = callFrame->codeBlock();
Note:
See TracChangeset
for help on using the changeset viewer.