Changeset 195876 in webkit for trunk/Source/JavaScriptCore/runtime/Executable.cpp
- Timestamp:
- Jan 29, 2016, 6:05:17 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Executable.cpp
r195799 r195876 134 134 ScriptExecutable::ScriptExecutable(Structure* structure, VM& vm, const SourceCode& source, bool isInStrictContext, DerivedContextType derivedContextType, bool isInArrowFunctionContext) 135 135 : ExecutableBase(vm, structure, NUM_PARAMETERS_NOT_COMPILED) 136 , m_source(source)137 136 , m_features(isInStrictContext ? StrictModeFeature : 0) 137 , m_didTryToEnterInLoop(false) 138 138 , m_hasCapturedVariables(false) 139 139 , m_neverInline(false) 140 , m_didTryToEnterInLoop(false) 141 , m_derivedContextType(derivedContextType) 140 , m_neverOptimize(false) 142 141 , m_isArrowFunctionContext(isInArrowFunctionContext) 142 , m_derivedContextType(static_cast<unsigned>(derivedContextType)) 143 143 , m_overrideLineNumber(-1) 144 144 , m_firstLine(-1) … … 148 148 , m_typeProfilingStartOffset(UINT_MAX) 149 149 , m_typeProfilingEndOffset(UINT_MAX) 150 , m_source(source) 150 151 { 151 152 }
Note:
See TracChangeset
for help on using the changeset viewer.