Repository: flex-falcon Updated Branches: refs/heads/develop 1144b7b8d -> c1a72014c
array's child nodes weren't being handled Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/f7bde991 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/f7bde991 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/f7bde991 Branch: refs/heads/develop Commit: f7bde9918028af019badab4f2e926480cafc75bb Parents: 27576a3 Author: Alex Harui <[email protected]> Authored: Thu Oct 30 21:34:39 2014 -0700 Committer: Alex Harui <[email protected]> Committed: Thu Oct 30 21:36:35 2014 -0700 ---------------------------------------------------------------------- .../org/apache/flex/compiler/internal/tree/mxml/MXMLArrayNode.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/f7bde991/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLArrayNode.java ---------------------------------------------------------------------- diff --git a/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLArrayNode.java b/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLArrayNode.java index 54732fc..0f37598 100644 --- a/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLArrayNode.java +++ b/compiler/src/org/apache/flex/compiler/internal/tree/mxml/MXMLArrayNode.java @@ -167,6 +167,7 @@ class MXMLArrayNode extends MXMLInstanceNode implements IMXMLArrayNode builder, childTag.getShortName(), this); instanceNode.setClassReference(project, childTag.getShortName()); instanceNode.initializeFromTag(builder, childTag); + info.addChildNode(instanceNode); } else {
