Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4B98019C63 for ; Mon, 11 Apr 2016 12:06:05 +0000 (UTC) Received: (qmail 37816 invoked by uid 500); 11 Apr 2016 12:06:05 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 37787 invoked by uid 500); 11 Apr 2016 12:06:05 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 37778 invoked by uid 99); 11 Apr 2016 12:06:05 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Apr 2016 12:06:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1567EDFC6F; Mon, 11 Apr 2016 12:06:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: harbs@apache.org To: commits@flex.apache.org Message-Id: <99a4c62e63494dee92f4a5aa81ca809e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-asjs] [refs/heads/develop] - Added support for E4X filtering expressions Date: Mon, 11 Apr 2016 12:06:05 +0000 (UTC) Repository: flex-asjs Updated Branches: refs/heads/develop d4dc652c9 -> fd1ae8ee6 Added support for E4X filtering expressions Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/fd1ae8ee Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/fd1ae8ee Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/fd1ae8ee Branch: refs/heads/develop Commit: fd1ae8ee61bc1a1ed109782fd975efc4937e2be0 Parents: d4dc652 Author: Harbs Authored: Mon Apr 11 15:06:00 2016 +0300 Committer: Harbs Committed: Mon Apr 11 15:06:00 2016 +0300 ---------------------------------------------------------------------- .../projects/XML/src/main/flex/XMLList.as | 23 ++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/fd1ae8ee/frameworks/projects/XML/src/main/flex/XMLList.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/XML/src/main/flex/XMLList.as b/frameworks/projects/XML/src/main/flex/XMLList.as index d507033..ea7b4ec 100644 --- a/frameworks/projects/XML/src/main/flex/XMLList.as +++ b/frameworks/projects/XML/src/main/flex/XMLList.as @@ -249,8 +249,14 @@ package throw new TypeError("invalid type"); var item:XML; - for each(item in list) - appendChild(item); + //work-around for FLEX-35070 + var len:int = list.length(); + var i:int=0; + while(i