Changeset 192935 in webkit for trunk/Source/JavaScriptCore/runtime/Executable.cpp
- Timestamp:
- Dec 1, 2015, 5:37:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Executable.cpp
r192914 r192935 300 300 executable->m_unlinkedExecutable->unlinkedCodeBlockFor( 301 301 *vm, executable->m_source, kind, debuggerMode, profilerMode, error, 302 executable-> parseMode());302 executable->isArrowFunction()); 303 303 recordParse( 304 304 executable->m_unlinkedExecutable->features(), … … 557 557 std::unique_ptr<ProgramNode> programNode = parse<ProgramNode>( 558 558 vm, m_source, Identifier(), JSParserBuiltinMode::NotBuiltin, 559 JSParserStrictMode::NotStrict, SourceParseMode::ProgramMode, SuperBinding::NotNeeded,error);559 JSParserStrictMode::NotStrict, SourceParseMode::ProgramMode, error); 560 560 if (programNode) 561 561 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.