Title: [145047] trunk/Source/_javascript_Core
Revision
145047
Author
[email protected]
Date
2013-03-07 00:18:45 -0800 (Thu, 07 Mar 2013)

Log Message

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

Patch by Peter Gal <[email protected]> on 2013-03-07
Reviewed by Filip Pizlo.

* offlineasm/ast.rb: Fixed the return value of the children method in the Not AST class.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (145046 => 145047)


--- trunk/Source/_javascript_Core/ChangeLog	2013-03-07 08:12:31 UTC (rev 145046)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-03-07 08:18:45 UTC (rev 145047)
@@ -1,3 +1,12 @@
+2013-03-07  Peter Gal  <[email protected]>
+
+        Children method in LLINT AST Not class should return [@child]
+        https://bugs.webkit.org/show_bug.cgi?id=90740
+
+        Reviewed by Filip Pizlo.
+
+        * offlineasm/ast.rb: Fixed the return value of the children method in the Not AST class.
+
 2013-03-05  Oliver Hunt  <[email protected]>
 
         Bring back eager resolution of function scoped variables

Modified: trunk/Source/_javascript_Core/offlineasm/ast.rb (145046 => 145047)


--- trunk/Source/_javascript_Core/offlineasm/ast.rb	2013-03-07 08:12:31 UTC (rev 145046)
+++ trunk/Source/_javascript_Core/offlineasm/ast.rb	2013-03-07 08:18:45 UTC (rev 145047)
@@ -1139,7 +1139,7 @@
     end
     
     def children
-        [@left, @right]
+        [@child]
     end
     
     def mapChildren
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to