You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/10/03 17:35:38 UTC

git commit: [flex-falcon] [refs/heads/develop] - add console output to help debug Peter's compile errors

Repository: flex-falcon
Updated Branches:
  refs/heads/develop 529efb8e9 -> 2d127b3f6


add console output to help debug Peter's compile errors


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

Branch: refs/heads/develop
Commit: 2d127b3f6cae5d4f8d90a7d7bef9c46b05ba71bc
Parents: 529efb8
Author: Alex Harui <ah...@apache.org>
Authored: Fri Oct 3 08:34:54 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Oct 3 08:35:31 2014 -0700

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


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/2d127b3f/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java
index bc17444..480583e 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/flexjs/JSFlexJSDocEmitter.java
@@ -86,6 +86,8 @@ public class JSFlexJSDocEmitter extends JSGoogDocEmitter
                             .resolve(project, (ASScope) classDefinition
                                     .getContainingScope(),
                                     DependencyType.INHERITANCE, true);
+                    if (type == null)
+                    	System.out.println(iReference.getDisplayString() + " not resolved in " + classDefinition.getQualifiedName());
                     emitImplements(type, type.getPackageName());
                 }
             }