Changeset 193606 in webkit for trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h
- Timestamp:
- Dec 6, 2015, 5:54:43 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h
r193584 r193606 120 120 bool usesEval() const { return m_usesEval; } 121 121 SourceParseMode parseMode() const { return m_parseMode; } 122 bool isArrowFunction() const { return m_parseMode == SourceParseMode::ArrowFunctionMode; }123 bool isDerivedConstructorContext() const { return m_isDerivedConstructorContext; }124 bool isArrowFunctionContext() const { return m_isArrowFunctionContext; }125 122 126 123 bool needsFullScopeChain() const { return m_needsFullScopeChain; } … … 397 394 unsigned m_generatorThisMode : 1; 398 395 unsigned m_superBinding : 1; 399 unsigned m_isDerivedConstructorContext : 1;400 unsigned m_isArrowFunctionContext : 1;401 396 402 397 unsigned m_firstLine;
Note:
See TracChangeset
for help on using the changeset viewer.