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 2014/09/16 16:01:55 UTC

[03/11] git commit: [flex-falcon] [refs/heads/develop] - Add handler stubs

Add handler stubs

For full cross-compilation, these stubs obviously need an implementation ;-)

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

Branch: refs/heads/develop
Commit: a44c13079079f75f88e9f9e71047ebc900c89de4
Parents: 08be946
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Tue Sep 16 13:40:30 2014 +0200
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Tue Sep 16 13:40:30 2014 +0200

----------------------------------------------------------------------
 .../flex/compiler/internal/visitor/as/ASNodeSwitch.java      | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/a44c1307/compiler.jx/src/org/apache/flex/compiler/internal/visitor/as/ASNodeSwitch.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/visitor/as/ASNodeSwitch.java b/compiler.jx/src/org/apache/flex/compiler/internal/visitor/as/ASNodeSwitch.java
index 8f95453..610a644 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/visitor/as/ASNodeSwitch.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/visitor/as/ASNodeSwitch.java
@@ -104,6 +104,14 @@ public class ASNodeSwitch implements IASNodeStrategy
         // TODO (mschmalle) Still working on the switch, its complication in the expressions
         switch (node.getNodeID())
         {
+        case ContainerID:
+            // ToDo (erikdebruin): implement handler
+            return;
+
+        case ConfigBlockID:
+            // ToDo (erikdebruin): implement handler
+            return;
+
         case FileID:
             visitor.visitFile((IFileNode) node);
             return;