Changeset 2766 in webkit for trunk/JavaScriptCore/kjs/nodes2string.cpp
- Timestamp:
- Nov 19, 2002, 3:45:44 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes2string.cpp
r1799 r2766 34 34 35 35 UString toString() const { return str; } 36 SourceStream& operator<<(const KJS::UString &); 36 SourceStream& operator<<(const Identifier &); 37 SourceStream& operator<<(const UString &); 38 SourceStream& operator<<(const char *); 37 39 SourceStream& operator<<(char); 38 40 SourceStream& operator<<(Format f); … … 52 54 } 53 55 54 SourceStream& SourceStream::operator<<(const KJS::UString &s) 56 SourceStream& SourceStream::operator<<(const char *s) 57 { 58 str += UString(s); 59 return *this; 60 } 61 62 SourceStream& SourceStream::operator<<(const UString &s) 55 63 { 56 64 str += s; 65 return *this; 66 } 67 68 SourceStream& SourceStream::operator<<(const Identifier &s) 69 { 70 str += s.ustring(); 57 71 return *this; 58 72 }
Note:
See TracChangeset
for help on using the changeset viewer.