Changeset 184378 in webkit


Ignore:
Timestamp:
May 15, 2015, 2:22:19 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Fix typo in function name parseFunctionParamters -> parseFunctionParameters
https://bugs.webkit.org/show_bug.cgi?id=145040

Patch by Alexandr Skachkov <gskachkov@gmail.com> on 2015-05-15
Reviewed by Mark Lam.

  • parser/Parser.h:
  • parser/Parser.cpp:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r184368 r184378  
     12015-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
    1112015-05-14  Filip Pizlo  <fpizlo@apple.com>
    212
  • trunk/Source/JavaScriptCore/parser/Parser.cpp

    r184349 r184378  
    13111311}
    13121312
    1313 template <typename LexerType> template <class TreeBuilder> int Parser<LexerType>::parseFunctionParamters(TreeBuilder& context, FunctionRequirements requirements, FunctionParseMode mode, bool nameIsInContainingScope, AutoPopScopeRef& functionScope, ParserFunctionInfo<TreeBuilder>& info)
     1313template <typename LexerType> template <class TreeBuilder> int Parser<LexerType>::parseFunctionParameters(TreeBuilder& context, FunctionRequirements requirements, FunctionParseMode mode, bool nameIsInContainingScope, AutoPopScopeRef& functionScope, ParserFunctionInfo<TreeBuilder>& info)
    13141314{
    13151315    if (match(IDENT)) {
     
    13611361    m_lastFunctionName = nullptr;
    13621362   
    1363     int parametersStart = parseFunctionParamters(context, requirements, mode, nameIsInContainingScope, functionScope, info);
     1363    int parametersStart = parseFunctionParameters(context, requirements, mode, nameIsInContainingScope, functionScope, info);
    13641364    propagateError();
    13651365
  • trunk/Source/JavaScriptCore/parser/Parser.h

    r184349 r184378  
    775775    template <class TreeBuilder> NEVER_INLINE bool parseFunctionInfo(TreeBuilder&, FunctionRequirements, FunctionParseMode, bool nameIsInContainingScope, ConstructorKind, SuperBinding, int functionKeywordStart, ParserFunctionInfo<TreeBuilder>&);
    776776   
    777     template <class TreeBuilder> NEVER_INLINE int parseFunctionParamters(TreeBuilder&, FunctionRequirements, FunctionParseMode, bool, AutoPopScopeRef&, ParserFunctionInfo<TreeBuilder>&);
     777    template <class TreeBuilder> NEVER_INLINE int parseFunctionParameters(TreeBuilder&, FunctionRequirements, FunctionParseMode, bool, AutoPopScopeRef&, ParserFunctionInfo<TreeBuilder>&);
    778778
    779779#if ENABLE(ES6_CLASS_SYNTAX)
Note: See TracChangeset for help on using the changeset viewer.