From d05bd3592050a9496dd87bcd8a49f8fdc8b6b58d Mon Sep 17 00:00:00 2001 From: Nathanael Sensfelder Date: Fri, 21 Jul 2017 16:50:25 +0200 Subject: Adds output support. --- ast-to-instr/src/VHDLNode.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ast-to-instr/src/VHDLNode.java') 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; -- cgit v1.2.3-70-g09d2