Changeset 196179 in webkit for trunk/Source/JavaScriptCore/runtime/Structure.h
- Timestamp:
- Feb 5, 2016, 11:52:19 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Structure.h
r194869 r196179 1 1 /* 2 * Copyright (C) 2008, 2009, 2012-201 5Apple Inc. All rights reserved.2 * Copyright (C) 2008, 2009, 2012-2016 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 321 321 && (offset < m_inlineCapacity || offset >= firstOutOfLineOffset); 322 322 } 323 324 bool hijacksIndexingHeader() const 325 { 326 return isTypedView(m_classInfo->typedArrayStorageType); 327 } 323 328 324 329 bool couldHaveIndexingHeader() const 325 330 { 326 331 return hasIndexedProperties(indexingType()) 327 || isTypedView(m_classInfo->typedArrayStorageType);332 || hijacksIndexingHeader(); 328 333 } 329 334
Note:
See TracChangeset
for help on using the changeset viewer.