summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ast-to-instr/src/VHDLNode.java')
-rw-r--r--ast-to-instr/src/VHDLNode.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/ast-to-instr/src/VHDLNode.java b/ast-to-instr/src/VHDLNode.java
index 1774672..cb3fb4d 100644
--- a/ast-to-instr/src/VHDLNode.java
+++ b/ast-to-instr/src/VHDLNode.java
@@ -5,9 +5,11 @@ public abstract class VHDLNode extends ParsableXML
protected final IDs next_node;
protected final int depth;
protected final String[] attributes;
+ protected final OutputFile output;
public VHDLNode
(
+ final OutputFile output,
final IDs parent_id,
final Node xml_node,
final IDs next_node,
@@ -17,6 +19,7 @@ public abstract class VHDLNode extends ParsableXML
{
super(parent_id, xml_node);
+ this.output = output;
this.next_node = next_node;
this.depth = depth;
this.attributes = attributes;