Changeset 45995 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Jul 16, 2009, 4:28:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.h
r45609 r45995 222 222 #endif 223 223 224 class CodeBlock : public WTF::FastAllocBase {224 class CodeBlock : public FastAllocBase { 225 225 friend class JIT; 226 226 public: … … 494 494 SymbolTable m_symbolTable; 495 495 496 struct ExceptionInfo {496 struct ExceptionInfo : FastAllocBase { 497 497 Vector<ExpressionRangeInfo> m_expressionInfo; 498 498 Vector<LineInfo> m_lineInfo; … … 505 505 OwnPtr<ExceptionInfo> m_exceptionInfo; 506 506 507 struct RareData {507 struct RareData : FastAllocBase { 508 508 Vector<HandlerInfo> m_exceptionHandlers; 509 509
Note:
See TracChangeset
for help on using the changeset viewer.