Changeset 192882 in webkit for trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h
- Timestamp:
- Dec 1, 2015, 6:39:58 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h
r192876 r192882 118 118 bool usesEval() const { return m_usesEval; } 119 119 bool isArrowFunction() const { return m_isArrowFunction; } 120 bool isDerivedConstructorContext() const { return m_isDerivedConstructorContext; }121 bool isArrowFunctionContext() const { return m_isArrowFunctionContext; }122 120 123 121 bool needsFullScopeChain() const { return m_needsFullScopeChain; } … … 391 389 unsigned m_constructorKind : 2; 392 390 unsigned m_isArrowFunction : 1; 393 unsigned m_isDerivedConstructorContext : 1;394 unsigned m_isArrowFunctionContext : 1;395 391 396 392 unsigned m_firstLine;
Note:
See TracChangeset
for help on using the changeset viewer.