Changeset 192935 in webkit for trunk/Source/JavaScriptCore/runtime/Completion.cpp
- Timestamp:
- Dec 1, 2015, 5:37:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Completion.cpp
r192914 r192935 64 64 return !!parse<ProgramNode>( 65 65 &vm, source, Identifier(), JSParserBuiltinMode::NotBuiltin, 66 JSParserStrictMode::NotStrict, SourceParseMode::ProgramMode, SuperBinding::NotNeeded,error);66 JSParserStrictMode::NotStrict, SourceParseMode::ProgramMode, error); 67 67 } 68 68 … … 74 74 std::unique_ptr<ModuleProgramNode> moduleProgramNode = parse<ModuleProgramNode>( 75 75 &vm, source, Identifier(), JSParserBuiltinMode::NotBuiltin, 76 JSParserStrictMode::Strict, SourceParseMode::ModuleAnalyzeMode, SuperBinding::NotNeeded,error);76 JSParserStrictMode::Strict, SourceParseMode::ModuleAnalyzeMode, error); 77 77 if (!moduleProgramNode) 78 78 return false;
Note:
See TracChangeset
for help on using the changeset viewer.