Changeset 69663 in webkit for trunk/JavaScriptCore/runtime/FunctionConstructor.cpp
- Timestamp:
- Oct 13, 2010, 7:44:14 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/FunctionConstructor.cpp
r69594 r69663 32 32 #include "Parser.h" 33 33 #include "UStringBuilder.h" 34 #include " StringConcatenate.h"34 #include "UStringConcatenate.h" 35 35 36 36 namespace JSC { … … 82 82 program = "(function() { \n})"; 83 83 else if (args.size() == 1) 84 program = make String("(function() { ", args.at(0).toString(exec), "\n})");84 program = makeUString("(function() { ", args.at(0).toString(exec), "\n})"); 85 85 else { 86 86 UStringBuilder builder;
Note:
See TracChangeset
for help on using the changeset viewer.