| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-07-20 21:02:32 +0200 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-07-20 21:02:32 +0200 | 
| commit | b4935b361bd16648044526efba818fb6839e0ca9 (patch) | |
| tree | ac4a2db1be97aa503683fbaec6a7884da829c8b3 /ast-to-instr/src/VHDLCSNode.java | |
| parent | 45b091f8a44c422d89f9d3bcaf25e5df91da31a7 (diff) | |
Still missing: Components, When Nodes, Outputs.
Diffstat (limited to 'ast-to-instr/src/VHDLCSNode.java')
| -rw-r--r-- | ast-to-instr/src/VHDLCSNode.java | 30 | 
1 files changed, 17 insertions, 13 deletions
| diff --git a/ast-to-instr/src/VHDLCSNode.java b/ast-to-instr/src/VHDLCSNode.java index 8c30795..7ed0ff5 100644 --- a/ast-to-instr/src/VHDLCSNode.java +++ b/ast-to-instr/src/VHDLCSNode.java @@ -8,7 +8,7 @@ import javax.xml.xpath.XPathExpressionException;  import java.util.ArrayList;  import java.util.Collection; -/* If Statement Node */ +/* Case Statement Node */  public class VHDLCSNode extends VHDLNode  {     private static final XPathExpression XPE_FIND_SOURCES; @@ -17,20 +17,24 @@ public class VHDLCSNode extends VHDLNode     static     { -      XPE_FIND_SOURCES = XMLManager.compile_or_die -      ( -         "./expression//named_entity" -      ); +      XPE_FIND_SOURCES = +         XMLManager.compile_or_die +         ( +            "./expression//named_entity" +         ); -      XPE_FIND_OTHERS_BRANCH = XMLManager.compile_or_die -      ( -         "./case_statement_alternative_chain/el[@kind=\"choice_by_others\"]" -      ); +      XPE_FIND_OTHERS_BRANCH = +         XMLManager.compile_or_die +         ( +            "./case_statement_alternative_chain/el[@kind=\"choice_by_others\"]" +         ); -      XPE_FIND_WHEN_BRANCHES = XMLManager.compile_or_die -      ( -         "./case_statement_alternative_chain/el[@kind=\"choice_by_expression\"]" -      ); +      XPE_FIND_WHEN_BRANCHES = +         XMLManager.compile_or_die +         ( +            "./case_statement_alternative_chain/el" +            + "[@kind=\"choice_by_expression\"]" +         );     }     public VHDLCSNode | 


