Changeset 26688 in webkit for trunk/JavaScriptCore/kjs/internal.cpp
- Timestamp:
- Oct 16, 2007, 4:25:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/internal.cpp
r24633 r26688 42 42 #include "regexp_object.h" 43 43 #include "string_object.h" 44 #include <assert.h> 44 #include <math.h> 45 #include <stdio.h> 46 #include <wtf/Assertions.h> 45 47 #include <wtf/HashMap.h> 46 48 #include <wtf/HashSet.h> 47 49 #include <wtf/Vector.h> 48 #include <math.h>49 #include <stdio.h>50 50 51 51 namespace KJS { … … 134 134 JSValue *GetterSetterImp::toPrimitive(ExecState*, JSType) const 135 135 { 136 assert(false);136 ASSERT(false); 137 137 return jsNull(); 138 138 } … … 140 140 bool GetterSetterImp::toBoolean(ExecState*) const 141 141 { 142 assert(false);142 ASSERT(false); 143 143 return false; 144 144 } … … 146 146 double GetterSetterImp::toNumber(ExecState *) const 147 147 { 148 assert(false);148 ASSERT(false); 149 149 return 0.0; 150 150 } … … 152 152 UString GetterSetterImp::toString(ExecState *) const 153 153 { 154 assert(false);154 ASSERT(false); 155 155 return UString::null(); 156 156 } … … 158 158 JSObject *GetterSetterImp::toObject(ExecState *exec) const 159 159 { 160 assert(false);160 ASSERT(false); 161 161 return jsNull()->toObject(exec); 162 162 }
Note:
See TracChangeset
for help on using the changeset viewer.