Changeset 145047 in webkit


Ignore:
Timestamp:
Mar 7, 2013 12:18:45 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Children method in LLINT AST Not class should return [@child]
https://bugs.webkit.org/show_bug.cgi?id=90740

Patch by Peter Gal <galpeter@inf.u-szeged.hu> on 2013-03-07
Reviewed by Filip Pizlo.

  • offlineasm/ast.rb: Fixed the return value of the children method in the Not AST class.
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r145000 r145047  
     12013-03-07  Peter Gal  <galpeter@inf.u-szeged.hu>
     2
     3        Children method in LLINT AST Not class should return [@child]
     4        https://bugs.webkit.org/show_bug.cgi?id=90740
     5
     6        Reviewed by Filip Pizlo.
     7
     8        * offlineasm/ast.rb: Fixed the return value of the children method in the Not AST class.
     9
    1102013-03-05  Oliver Hunt  <oliver@apple.com>
    211
  • trunk/Source/JavaScriptCore/offlineasm/ast.rb

    r123147 r145047  
    11401140   
    11411141    def children
    1142         [@left, @right]
     1142        [@child]
    11431143    end
    11441144   
Note: See TracChangeset for help on using the changeset viewer.