Changeset 184378 in webkit
- Timestamp:
- May 15, 2015, 2:22:19 AM (10 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r184368 r184378 1 2015-05-15 Alexandr Skachkov <gskachkov@gmail.com> 2 3 Fix typo in function name parseFunctionParamters -> parseFunctionParameters 4 https://bugs.webkit.org/show_bug.cgi?id=145040 5 6 Reviewed by Mark Lam. 7 8 * parser/Parser.h: 9 * parser/Parser.cpp: 10 1 11 2015-05-14 Filip Pizlo <fpizlo@apple.com> 2 12 -
trunk/Source/JavaScriptCore/parser/Parser.cpp
r184349 r184378 1311 1311 } 1312 1312 1313 template <typename LexerType> template <class TreeBuilder> int Parser<LexerType>::parseFunctionParam ters(TreeBuilder& context, FunctionRequirements requirements, FunctionParseMode mode, bool nameIsInContainingScope, AutoPopScopeRef& functionScope, ParserFunctionInfo<TreeBuilder>& info)1313 template <typename LexerType> template <class TreeBuilder> int Parser<LexerType>::parseFunctionParameters(TreeBuilder& context, FunctionRequirements requirements, FunctionParseMode mode, bool nameIsInContainingScope, AutoPopScopeRef& functionScope, ParserFunctionInfo<TreeBuilder>& info) 1314 1314 { 1315 1315 if (match(IDENT)) { … … 1361 1361 m_lastFunctionName = nullptr; 1362 1362 1363 int parametersStart = parseFunctionParam ters(context, requirements, mode, nameIsInContainingScope, functionScope, info);1363 int parametersStart = parseFunctionParameters(context, requirements, mode, nameIsInContainingScope, functionScope, info); 1364 1364 propagateError(); 1365 1365 -
trunk/Source/JavaScriptCore/parser/Parser.h
r184349 r184378 775 775 template <class TreeBuilder> NEVER_INLINE bool parseFunctionInfo(TreeBuilder&, FunctionRequirements, FunctionParseMode, bool nameIsInContainingScope, ConstructorKind, SuperBinding, int functionKeywordStart, ParserFunctionInfo<TreeBuilder>&); 776 776 777 template <class TreeBuilder> NEVER_INLINE int parseFunctionParam ters(TreeBuilder&, FunctionRequirements, FunctionParseMode, bool, AutoPopScopeRef&, ParserFunctionInfo<TreeBuilder>&);777 template <class TreeBuilder> NEVER_INLINE int parseFunctionParameters(TreeBuilder&, FunctionRequirements, FunctionParseMode, bool, AutoPopScopeRef&, ParserFunctionInfo<TreeBuilder>&); 778 778 779 779 #if ENABLE(ES6_CLASS_SYNTAX)
Note:
See TracChangeset
for help on using the changeset viewer.