Changeset 43424 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- May 8, 2009, 6:01:16 PM (16 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
r43372 r43424 29 29 #include "GlobalEvalFunction.h" 30 30 #include "JSGlobalObject.h" 31 #include "LiteralParser.h" 31 32 #include "JSString.h" 32 33 #include "Interpreter.h" … … 282 283 UString s = x.toString(exec); 283 284 285 LiteralParser preparser(exec, s); 286 if (JSValue parsedObject = preparser.tryLiteralParse()) 287 return parsedObject; 288 284 289 int errLine; 285 290 UString errMsg;
Note:
See TracChangeset
for help on using the changeset viewer.