Changeset 243365 in webkit for trunk/Source/JavaScriptCore/runtime/EvalExecutable.cpp
- Timestamp:
- Mar 22, 2019, 12:14:43 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/EvalExecutable.cpp
r233085 r243365 32 32 namespace JSC { 33 33 34 const ClassInfo EvalExecutable::s_info = { "EvalExecutable", & ScriptExecutable::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(EvalExecutable) };34 const ClassInfo EvalExecutable::s_info = { "EvalExecutable", &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(EvalExecutable) }; 35 35 36 36 EvalExecutable::EvalExecutable(ExecState* exec, const SourceCode& source, bool inStrictContext, DerivedContextType derivedContextType, bool isArrowFunctionContext, EvalContextType evalContextType) 37 : ScriptExecutable(exec->vm().evalExecutableStructure.get(), exec->vm(), source, inStrictContext, derivedContextType, isArrowFunctionContext, evalContextType, NoIntrinsic)37 : Base(exec->vm().evalExecutableStructure.get(), exec->vm(), source, inStrictContext, derivedContextType, isArrowFunctionContext, evalContextType, NoIntrinsic) 38 38 { 39 39 ASSERT(source.provider()->sourceType() == SourceProviderSourceType::Program);
Note:
See TracChangeset
for help on using the changeset viewer.