Changeset 46528 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Jul 29, 2009, 1:04:19 AM (16 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/ClassInfo.h
r38528 r46528 28 28 namespace JSC { 29 29 30 structHashEntry;30 class HashEntry; 31 31 struct HashTable; 32 32 -
trunk/JavaScriptCore/runtime/ExceptionHelpers.h
r43122 r46528 37 37 class ExecState; 38 38 class Identifier; 39 class Instruction;40 39 class JSGlobalData; 41 40 class JSNotAnObjectErrorStub; … … 43 42 class JSValue; 44 43 class Node; 45 44 struct Instruction; 45 46 46 JSValue createInterruptedExecutionException(JSGlobalData*); 47 47 JSValue createStackOverflowError(ExecState*); -
trunk/JavaScriptCore/runtime/JSByteArray.h
r43122 r46528 34 34 35 35 class JSByteArray : public JSObject { 36 friend classVPtrSet;36 friend struct VPtrSet; 37 37 public: 38 38 bool canAccessIndex(unsigned i) { return i < m_storage->length(); } -
trunk/JavaScriptCore/runtime/JSCell.h
r45897 r46528 41 41 friend class JSString; 42 42 friend class JSValue; 43 friend classVPtrSet;43 friend struct VPtrSet; 44 44 45 45 private: -
trunk/JavaScriptCore/runtime/JSFunction.h
r44344 r46528 40 40 class JSFunction : public InternalFunction { 41 41 friend class JIT; 42 friend classVPtrSet;42 friend struct VPtrSet; 43 43 44 44 typedef InternalFunction Base; -
trunk/JavaScriptCore/runtime/JSGlobalData.h
r44844 r46528 48 48 class FunctionBodyNode; 49 49 class IdentifierTable; 50 class Instruction;51 50 class Interpreter; 52 51 class JSGlobalObject; … … 60 59 61 60 struct HashTable; 61 struct Instruction; 62 62 struct VPtrSet; 63 63 -
trunk/JavaScriptCore/runtime/JSObject.h
r44757 r46528 43 43 return 0; 44 44 } 45 45 46 class HashEntry; 46 47 class InternalFunction; 47 48 class PropertyNameArray; 48 49 class Structure; 49 struct HashEntry;50 50 struct HashTable; 51 51 -
trunk/JavaScriptCore/runtime/JSString.h
r43122 r46528 61 61 class JSString : public JSCell { 62 62 friend class JIT; 63 friend classVPtrSet;63 friend struct VPtrSet; 64 64 65 65 public:
Note:
See TracChangeset
for help on using the changeset viewer.