Changeset 226650 in webkit for trunk/Source/JavaScriptCore/parser/Nodes.h
- Timestamp:
- Jan 9, 2018, 10:49:25 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Nodes.h
r225799 r226650 2 2 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 3 3 * Copyright (C) 2001 Peter Kelly ([email protected]) 4 * Copyright (C) 2003-20 09, 2013, 2015-2016Apple Inc. All rights reserved.4 * Copyright (C) 2003-2018 Apple Inc. All rights reserved. 5 5 * Copyright (C) 2007 Cameron Zwarich ([email protected]) 6 6 * Copyright (C) 2007 Maks Orlovich … … 698 698 bool needsSuperBinding() const { return m_needsSuperBinding; } 699 699 bool isClassProperty() const { return m_isClassProperty; } 700 bool isOverriddenByDuplicate() const { return m_isOverriddenByDuplicate; } 701 void setIsOverriddenByDuplicate() { m_isOverriddenByDuplicate = true; } 700 702 PutType putType() const { return static_cast<PutType>(m_putType); } 701 703 … … 709 711 unsigned m_putType : 1; 710 712 unsigned m_isClassProperty: 1; 713 unsigned m_isOverriddenByDuplicate: 1; 711 714 }; 712 715
Note:
See TracChangeset
for help on using the changeset viewer.