From 3b16efd39a23fff4689bffb85ce1e25aede2f023 Mon Sep 17 00:00:00 2001 From: Peter Gal Date: Thu, 21 Mar 2013 15:44:47 +0100 Subject: Children method in LLINT AST Not class should return [@child] https://bugs.webkit.org/show_bug.cgi?id=90740 Patch by Peter Gal on 2013-03-07 Reviewed by Filip Pizlo. * offlineasm/ast.rb: Fixed the return value of the children method in the Not AST class. Change-Id: Id9737890167006198c25a585e89fc41f8a9ae784 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@145047 268f45cc-cd09-0410-ab3c-d52691b4dbfc Reviewed-by: Andras Becsi --- Source/JavaScriptCore/offlineasm/ast.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/JavaScriptCore/offlineasm') diff --git a/Source/JavaScriptCore/offlineasm/ast.rb b/Source/JavaScriptCore/offlineasm/ast.rb index 9333247dc..4f0c3fd88 100644 --- a/Source/JavaScriptCore/offlineasm/ast.rb +++ b/Source/JavaScriptCore/offlineasm/ast.rb @@ -1139,7 +1139,7 @@ class Not < Node end def children - [@left, @right] + [@child] end def mapChildren -- cgit v1.2.1