Changeset 27468 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 5, 2007, 10:24:03 PM (18 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r27467 r27468 1 2007-11-05 Eric Seidel <[email protected]> 2 3 * kjs/operations.cpp: 4 (KJS::equal): correct broken change. 5 1 6 2007-11-05 Eric Seidel <[email protected]> 2 7 -
trunk/JavaScriptCore/kjs/operations.cpp
r27467 r27468 81 81 82 82 if (t1 == StringType) 83 return static_cast<StringImp*>(v1)-> toString(exec) == v2->toString(exec);83 return static_cast<StringImp*>(v1)->value() == v2->toString(exec); 84 84 85 85 if (t1 == BooleanType)
Note:
See TracChangeset
for help on using the changeset viewer.