Changeset 38407 in webkit for trunk/JavaScriptCore/runtime/PropertyMapHashTable.h
- Timestamp:
- Nov 14, 2008, 3:36:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/PropertyMapHashTable.h
r38137 r38407 32 32 unsigned index; 33 33 34 PropertyMapEntry(UString::Rep* k , int a)35 : key(k )34 PropertyMapEntry(UString::Rep* key, unsigned attributes) 35 : key(key) 36 36 , offset(0) 37 , attributes(a )37 , attributes(attributes) 38 38 , index(0) 39 { 40 } 41 42 PropertyMapEntry(UString::Rep* key, unsigned offset, unsigned attributes, unsigned index) 43 : key(key) 44 , offset(offset) 45 , attributes(attributes) 46 , index(index) 39 47 { 40 48 }
Note:
See TracChangeset
for help on using the changeset viewer.