Changeset 187119 in webkit


Ignore:
Timestamp:
Jul 21, 2015 1:22:37 PM (9 years ago)
Author:
saambarati1@gmail.com
Message:

ObjectPatternNode's entry should use "const Identifier&" instead of "Identifier"
https://bugs.webkit.org/show_bug.cgi?id=147156

Reviewed by Andreas Kling.

  • parser/Nodes.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r187118 r187119  
     12015-07-21  Saam barati  <saambarati1@gmail.com>
     2
     3        ObjectPatternNode's entry should use "const Identifier&" instead of "Identifier"
     4        https://bugs.webkit.org/show_bug.cgi?id=147156
     5
     6        Reviewed by Andreas Kling.
     7
     8        * parser/Nodes.h:
     9
    1102015-07-21  Basile Clement  <basile_clement@apple.com>
    211
  • trunk/Source/JavaScriptCore/parser/Nodes.h

    r187111 r187119  
    18071807        virtual void toString(StringBuilder&) const override;
    18081808        struct Entry {
    1809             Identifier propertyName;
     1809            const Identifier& propertyName;
    18101810            bool wasString;
    18111811            DestructuringPatternNode* pattern;
Note: See TracChangeset for help on using the changeset viewer.