You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/04/19 13:55:04 UTC

[05/10] git commit: [flex-falcon] - [FalconJX] raise method visibility

[FalconJX] raise method visibility

Raised visibility on a few methods to allow them to be overridden in a subclass.

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


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

Branch: refs/heads/develop
Commit: e6dc4032670b8a6ee5b6523db09d572b400af248
Parents: 87f6ec2
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Fri Apr 19 13:07:47 2013 +0200
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Fri Apr 19 13:07:47 2013 +0200

----------------------------------------------------------------------
 .../internal/codegen/js/goog/JSGoogDocEmitter.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/e6dc4032/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java
index 5f8323b..b5ba549 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java
@@ -338,7 +338,7 @@ public class JSGoogDocEmitter extends JSDocEmitter implements IJSGoogDocEmitter
 
     //--------------------------------------------------------------------------
 
-    private void emitJSDocLine(IEmitterTokens name)
+    protected void emitJSDocLine(IEmitterTokens name)
     {
         emitJSDocLine(name.getToken(), "");
     }
@@ -384,7 +384,7 @@ public class JSGoogDocEmitter extends JSDocEmitter implements IJSGoogDocEmitter
         writeNewline();
     }
 
-    private boolean containsThisReference(IASNode node)
+    protected boolean containsThisReference(IASNode node)
     {
         final int len = node.getChildCount();
         for (int i = 0; i < len; i++)
@@ -440,7 +440,7 @@ public class JSGoogDocEmitter extends JSDocEmitter implements IJSGoogDocEmitter
         return result;
     }
 
-    private IClassDefinition resolveClassDefinition(IFunctionNode node)
+    protected IClassDefinition resolveClassDefinition(IFunctionNode node)
     {
         IScopedNode scope = node.getContainingScope();
         if (scope instanceof IMXMLDocumentNode)