You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by gr...@apache.org on 2016/10/11 07:17:19 UTC

[4/6] git commit: [flex-falcon] [refs/heads/develop] - [FIX] Fix for error with @export not allowed in release mode processing with custom namespace - change to require 'public' for @export

[FIX] Fix for error with @export not allowed in release mode processing with custom namespace - change to require 'public' for @export


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/a7d6952a
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/a7d6952a
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/a7d6952a

Branch: refs/heads/develop
Commit: a7d6952a0f6ccd4a7baddaa70edd78633ea8e744
Parents: fbd5d67
Author: greg-dove <gr...@gmail.com>
Authored: Tue Oct 11 18:55:46 2016 +1300
Committer: greg-dove <gr...@gmail.com>
Committed: Tue Oct 11 18:55:46 2016 +1300

----------------------------------------------------------------------
 .../compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/a7d6952a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java
----------------------------------------------------------------------
diff --git a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java
index 152ba5d..80dde56 100644
--- a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java
+++ b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java
@@ -386,7 +386,7 @@ public class JSFlexJSDocEmitter extends JSGoogDocEmitter
         {
             emitProtected(node);
         }
-        else if (ns != null && ns != IASKeywordConstants.INTERNAL)
+        else if (ns != null && ns == IASKeywordConstants.PUBLIC)
         {
             emitPublic(node);
         }