summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-20 21:02:32 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-20 21:02:32 +0200
commitb4935b361bd16648044526efba818fb6839e0ca9 (patch)
treeac4a2db1be97aa503683fbaec6a7884da829c8b3 /ast-to-instr/src/VHDLSSASNode.java
parent45b091f8a44c422d89f9d3bcaf25e5df91da31a7 (diff)
Still missing: Components, When Nodes, Outputs.
Diffstat (limited to 'ast-to-instr/src/VHDLSSASNode.java')
-rw-r--r--ast-to-instr/src/VHDLSSASNode.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/ast-to-instr/src/VHDLSSASNode.java b/ast-to-instr/src/VHDLSSASNode.java
index dd7d9cd..8c84e96 100644
--- a/ast-to-instr/src/VHDLSSASNode.java
+++ b/ast-to-instr/src/VHDLSSASNode.java
@@ -8,7 +8,7 @@ import javax.xml.xpath.XPathExpressionException;
import java.util.ArrayList;
import java.util.Collection;
-/* If Statement Node */
+/* Simple Signal Assignment Statement Node */
public class VHDLSSASNode extends VHDLNode
{
private static final XPathExpression XPE_FIND_TARGET;
@@ -20,10 +20,11 @@ public class VHDLSSASNode extends VHDLNode
{
XPE_FIND_TARGET = XMLManager.compile_or_die("./target");
- XPE_FIND_SOURCES = XMLManager.compile_or_die
- (
- "./waveform_chain//named_entity"
- );
+ XPE_FIND_SOURCES =
+ XMLManager.compile_or_die
+ (
+ "./waveform_chain//named_entity"
+ );
XPE_FIND_PREFIXED_NE = XMLManager.compile_or_die("./prefix/named_entity");
XPE_FIND_NE = XMLManager.compile_or_die("./named_entity");