Changeset 190882 in webkit for trunk/Source/JavaScriptCore/runtime/JSStringBuilder.h
- Timestamp:
- Oct 12, 2015, 12:44:52 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSStringBuilder.h
r174219 r190882 128 128 inline JSValue jsMakeNontrivialString(ExecState* exec, const StringType& string, const StringTypes&... strings) 129 129 { 130 RefPtr<StringImpl>result = WTF::tryMakeString(string, strings...);130 String result = WTF::tryMakeString(string, strings...); 131 131 if (!result) 132 132 return throwOutOfMemoryError(exec); 133 return jsNontrivialString(exec, result .release());133 return jsNontrivialString(exec, result); 134 134 } 135 135
Note:
See TracChangeset
for help on using the changeset viewer.