Changeset 1799 in webkit for trunk/JavaScriptCore/kjs/nodes2string.cpp
- Timestamp:
- Aug 12, 2002, 1:14:02 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes2string.cpp
r830 r1799 35 35 UString toString() const { return str; } 36 36 SourceStream& operator<<(const KJS::UString &); 37 SourceStream& operator<<(char); 37 38 SourceStream& operator<<(Format f); 38 39 SourceStream& operator<<(const Node *); … … 44 45 45 46 using namespace KJS; 47 48 SourceStream& SourceStream::operator<<(char c) 49 { 50 str += UString(c); 51 return *this; 52 } 46 53 47 54 SourceStream& SourceStream::operator<<(const KJS::UString &s)
Note:
See TracChangeset
for help on using the changeset viewer.