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/12/06 11:37:14 UTC

[4/9] git commit: [flex-falcon] [refs/heads/develop] - Raise property visibility to allow for method override.

Raise property visibility to allow for method override.

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/c5e6f211
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/c5e6f211
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/c5e6f211

Branch: refs/heads/develop
Commit: c5e6f211d51514a946c90126268a1214bf707c4f
Parents: 53eb561
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Fri Dec 6 10:14:09 2013 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Fri Dec 6 10:14:09 2013 +0100

----------------------------------------------------------------------
 .../flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/c5e6f211/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java
index 3bebc64..65c591c 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogEmitter.java
@@ -85,7 +85,7 @@ public class JSGoogEmitter extends JSEmitter implements IJSGoogEmitter
     protected static final String CONSTRUCTOR_FULL = "fullConstructor";
     protected static final String SUPER_FUNCTION_CALL = "replaceSuperFunction";
 
-    private List<String> propertyNames = new ArrayList<String>();
+    protected List<String> propertyNames = new ArrayList<String>();
 
     protected ICompilerProject project;