Changeset 237128 in webkit for trunk/Source/JavaScriptCore/runtime/FunctionExecutable.cpp
- Timestamp:
- Oct 15, 2018, 11:42:44 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/FunctionExecutable.cpp
r237054 r237128 95 95 FunctionExecutable* FunctionExecutable::fromGlobalCode( 96 96 const Identifier& name, ExecState& exec, const SourceCode& source, 97 JSObject*& exception, int overrideLineNumber , std::optional<int> functionConstructorParametersEndPosition)97 JSObject*& exception, int overrideLineNumber) 98 98 { 99 99 UnlinkedFunctionExecutable* unlinkedExecutable = 100 100 UnlinkedFunctionExecutable::fromGlobalCode( 101 name, exec, source, exception, overrideLineNumber , functionConstructorParametersEndPosition);101 name, exec, source, exception, overrideLineNumber); 102 102 if (!unlinkedExecutable) 103 103 return nullptr;
Note:
See TracChangeset
for help on using the changeset viewer.