Changeset 1852 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Aug 16, 2002, 12:21:57 PM (23 years ago)
- Location:
- trunk/JavaScriptCore/kjs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r1837 r1852 194 194 { 195 195 assert(!value.isNull()); 196 assert(value.type() != ReferenceType);197 196 assert(value.type() != CompletionType); 198 197 assert(value.type() != ListType); -
trunk/JavaScriptCore/kjs/ustring.cpp
r1825 r1852 114 114 } 115 115 116 UChar UChar::null ;116 UChar UChar::null((char)0); 117 117 UString::Rep UString::Rep::null = { 0, 0, 0, 1 }; 118 118 UString::Rep UString::Rep::empty = { 0, 0, 0, 1 }; … … 121 121 static char *statBuffer = 0; 122 122 static int statBufferSize = 0; 123 124 UChar::UChar(const UCharReference &c)125 : uc( c.unicode() )126 {127 }128 123 129 124 UChar UChar::toLower() const -
trunk/JavaScriptCore/kjs/ustring.h
r1825 r1852 170 170 }; 171 171 172 inline UChar::UChar(const UCharReference &c) : uc(c.unicode()) { } 173 172 174 /** 173 175 * @short 8 bit char based string class
Note:
See TracChangeset
for help on using the changeset viewer.