Changeset 47022 in webkit for trunk/JavaScriptCore/runtime/Structure.h
- Timestamp:
- Aug 10, 2009, 9:35:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Structure.h
r44445 r47022 1 1 /* 2 * Copyright (C) 2008 Apple Inc. All rights reserved.2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 30 30 #include "JSType.h" 31 31 #include "JSValue.h" 32 #include "MarkStack.h" 32 33 #include "PropertyMapHashTable.h" 33 34 #include "StructureChain.h" … … 73 74 ~Structure(); 74 75 75 void mark() 76 { 77 if (!m_prototype.marked()) 78 m_prototype.mark(); 76 void markAggregate(MarkStack& markStack) 77 { 78 markStack.append(m_prototype); 79 79 } 80 80
Note:
See TracChangeset
for help on using the changeset viewer.