Changeset 55521 in webkit for trunk/JavaScriptCore
- Timestamp:
- Mar 4, 2010, 5:58:02 AM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r55520 r55521 1 2010-03-04 Shinichiro Hamaji <[email protected]> 2 3 Unreviewed. Remove a non-ASCII character introduced in the following bug. 4 5 put_by_id does will incorrectly cache writes where a specific value exists, where at the point of caching the same value is being written. 6 https://bugs.webkit.org/show_bug.cgi?id=35537 7 8 * runtime/JSObject.h: 9 (JSC::JSObject::putDirectInternal): 10 1 11 2010-03-04 Jocelyn Turcotte <[email protected]> 2 12 -
trunk/JavaScriptCore/runtime/JSObject.h
r55379 r55521 493 493 // There are three possibilities here: 494 494 // (1) There is an existing specific value set, and we're overwriting with *the same value*. 495 // * Do nothing –no need to despecify, but that means we can't cache (a cached495 // * Do nothing - no need to despecify, but that means we can't cache (a cached 496 496 // put could write a different value). Leave the slot in an uncachable state. 497 497 // (2) There is a specific value currently set, but we're writing a different value.
Note:
See TracChangeset
for help on using the changeset viewer.