Changeset 2843 in webkit for trunk/JavaScriptCore/kjs/collector.cpp
- Timestamp:
- Nov 22, 2002, 11:49:05 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/collector.cpp
r2825 r2843 2 2 /* 3 3 * This file is part of the KDE libraries 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 4 * Copyright (C) 2002 Apple Computer, Inc. 6 5 * 7 6 * This library is free software; you can redistribute it and/or … … 21 20 */ 22 21 22 #include "collector.h" 23 24 #include "value.h" 25 #include "internal.h" 26 23 27 #if APPLE_CHANGES 24 #define _COLLECTOR25 28 #include <CoreFoundation/CoreFoundation.h> 26 29 #include <cxxabi.h> 27 30 #endif 28 31 29 #include <collector.h> 30 #include <value.h> 31 #include <internal.h> 32 33 using namespace KJS; 32 namespace KJS { 34 33 35 34 // tunable parameters … … 360 359 } 361 360 362 // FIXME: Rename. Root object classes are more useful than live object classes. 363 CFSetRef Collector::liveObjectClasses() 361 const void *Collector::rootObjectClasses() 364 362 { 365 363 CFMutableSetRef classes = CFSetCreateMutable(NULL, 0, &kCFTypeSetCallBacks); … … 405 403 406 404 #endif // APPLE_CHANGES 405 406 } // namespace KJS
Note:
See TracChangeset
for help on using the changeset viewer.