Changeset 34891 in webkit for trunk/JavaScriptCore/VM/CodeGenerator.h
- Timestamp:
- Jun 30, 2008, 8:58:27 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeGenerator.h
r34852 r34891 296 296 PassRefPtr<LabelID> emitComplexJumpScopes(LabelID* target, ControlFlowContext* topScope, ControlFlowContext* bottomScope); 297 297 struct JSValueHashTraits : HashTraits<JSValue*> { 298 static void constructDeletedValue(JSValue* * slot) { *slot = JSImmediate::impossibleValue(); }298 static void constructDeletedValue(JSValue*& slot) { slot = JSImmediate::impossibleValue(); } 299 299 static bool isDeletedValue(JSValue* value) { return value == JSImmediate::impossibleValue(); } 300 300 };
Note:
See TracChangeset
for help on using the changeset viewer.