X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/9bcd318d5fa2a38139c9651d263a06c797529333..ba379fdc102753d6be2c4d937058fe40257329fe:/runtime/PropertyMapHashTable.h diff --git a/runtime/PropertyMapHashTable.h b/runtime/PropertyMapHashTable.h index 935df68..44dc2b8 100644 --- a/runtime/PropertyMapHashTable.h +++ b/runtime/PropertyMapHashTable.h @@ -30,20 +30,23 @@ namespace JSC { UString::Rep* key; unsigned offset; unsigned attributes; + JSCell* specificValue; unsigned index; - PropertyMapEntry(UString::Rep* key, unsigned attributes) + PropertyMapEntry(UString::Rep* key, unsigned attributes, JSCell* specificValue) : key(key) , offset(0) , attributes(attributes) + , specificValue(specificValue) , index(0) { } - PropertyMapEntry(UString::Rep* key, unsigned offset, unsigned attributes, unsigned index) + PropertyMapEntry(UString::Rep* key, unsigned offset, unsigned attributes, JSCell* specificValue, unsigned index) : key(key) , offset(offset) , attributes(attributes) + , specificValue(specificValue) , index(index) { }