Changeset 192935 in webkit for trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.cpp
- Timestamp:
- Dec 1, 2015, 5:37:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.cpp
r192914 r192935 55 55 : Base(*vm, structure) 56 56 , m_numVars(0) 57 , m_numCallee Locals(0)57 , m_numCalleeRegisters(0) 58 58 , m_numParameters(0) 59 59 , m_vm(vm) … … 66 66 , m_isBuiltinFunction(info.isBuiltinFunction()) 67 67 , m_constructorKind(static_cast<unsigned>(info.constructorKind())) 68 , m_generatorThisMode(static_cast<unsigned>(info.generatorThisMode())) 69 , m_superBinding(static_cast<unsigned>(info.superBinding())) 68 , m_isArrowFunction(info.isArrowFunction()) 70 69 , m_firstLine(0) 71 70 , m_lineCount(0) 72 71 , m_endColumn(UINT_MAX) 73 , m_parseMode(info.parseMode())74 72 , m_features(0) 75 73 , m_codeType(codeType)
Note:
See TracChangeset
for help on using the changeset viewer.