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 279BEF635 for ; Fri, 29 Mar 2013 18:56:52 +0000 (UTC) Received: (qmail 42574 invoked by uid 500); 29 Mar 2013 18:56:51 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 42528 invoked by uid 500); 29 Mar 2013 18:56:51 -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 42492 invoked by uid 99); 29 Mar 2013 18:56:51 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Mar 2013 18:56:51 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 7A5238341EF; Fri, 29 Mar 2013 18:56:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: erikdebruin@apache.org To: commits@flex.apache.org Date: Fri, 29 Mar 2013 18:56:52 -0000 Message-Id: <7f2034cb630f452693c86bdd6c8d2fa7@git.apache.org> In-Reply-To: <82912fd8fd8b4c8baea52f99c31bcf00@git.apache.org> References: <82912fd8fd8b4c8baea52f99c31bcf00@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/5] git commit: [FalconJx] minor assert change [FalconJx] minor assert change Matched assert to new result; removed space from "cast" JSDoc comment. Signed-off-by: Erik de Bruin Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/5314f8df Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/5314f8df Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/5314f8df Branch: refs/heads/develop Commit: 5314f8df610b9bfe3e509a510d44c57bd91fd0eb Parents: 0ece2f6 Author: Erik de Bruin Authored: Fri Mar 29 19:42:41 2013 +0100 Committer: Erik de Bruin Committed: Fri Mar 29 19:42:41 2013 +0100 ---------------------------------------------------------------------- .../codegen/js/flexjs/TestFlexJSExpressions.java | 2 +- .../js/flexjs/TestFlexJSGlobalFunctions.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/5314f8df/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java ---------------------------------------------------------------------- diff --git a/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java b/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java index b72571c..6f850a2 100644 --- a/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java +++ b/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSExpressions.java @@ -118,7 +118,7 @@ public class TestFlexJSExpressions extends TestGoogExpressions { IFunctionNode node = getMethod("function foo(){A(b).text = '';}"); asBlockWalker.visitFunction(node); - assertOut("A.prototype.foo = function() {\n\tvar self = this;\n\tb /** Cast to A */.text = '';\n}"); + assertOut("A.prototype.foo = function() {\n\tvar self = this;\n\tb/** Cast to A */.text = '';\n}"); } @Test http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/5314f8df/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSGlobalFunctions.java ---------------------------------------------------------------------- diff --git a/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSGlobalFunctions.java b/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSGlobalFunctions.java index 79a649f..0c896cc 100644 --- a/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSGlobalFunctions.java +++ b/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/js/flexjs/TestFlexJSGlobalFunctions.java @@ -37,7 +37,7 @@ public class TestFlexJSGlobalFunctions extends TestGoogGlobalFunctions { IVariableNode node = getVariable("var a:uint = uint(-100);"); asBlockWalker.visitVariable(node); - assertOut("var /** @type {number} */ a = -100 /** Cast to uint */"); + assertOut("var /** @type {number} */ a = -100/** Cast to uint */"); } @Override