From 44d19480a10924eac2191308d8842a4df1657167 Mon Sep 17 00:00:00 2001 From: Nathanael Sensfelder Date: Thu, 20 Jul 2017 16:11:59 +0200 Subject: Working on the IF nodes + Childrens -> children. --- ast-to-instr/src/VHDLArchitecture.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'ast-to-instr/src/VHDLArchitecture.java') diff --git a/ast-to-instr/src/VHDLArchitecture.java b/ast-to-instr/src/VHDLArchitecture.java index 1865e7a..5b5f033 100644 --- a/ast-to-instr/src/VHDLArchitecture.java +++ b/ast-to-instr/src/VHDLArchitecture.java @@ -236,7 +236,7 @@ public class VHDLArchitecture extends ParsableXML { final Collection result; final NodeList signals; - final int childrens_count; + final int children_count; result = new ArrayList(); @@ -247,9 +247,9 @@ public class VHDLArchitecture extends ParsableXML XPathConstants.NODESET ); - childrens_count = signals.getLength(); + children_count = signals.getLength(); - for (int i = 0; i < childrens_count; ++i) + for (int i = 0; i < children_count; ++i) { result.add(new VHDLSignal(local_id, signals.item(i))); } @@ -265,7 +265,7 @@ public class VHDLArchitecture extends ParsableXML { final Collection result; final NodeList processes; - final int childrens_count; + final int children_count; result = new ArrayList(); @@ -276,9 +276,9 @@ public class VHDLArchitecture extends ParsableXML XPathConstants.NODESET ); - childrens_count = processes.getLength(); + children_count = processes.getLength(); - for (int i = 0; i < childrens_count; ++i) + for (int i = 0; i < children_count; ++i) { result.add(new VHDLProcess(local_id, processes.item(i))); } @@ -294,7 +294,7 @@ public class VHDLArchitecture extends ParsableXML { final Collection result; final NodeList components; - final int childrens_count; + final int children_count; result = new ArrayList(); @@ -305,9 +305,9 @@ public class VHDLArchitecture extends ParsableXML XPathConstants.NODESET ); - childrens_count = components.getLength(); + children_count = components.getLength(); - for (int i = 0; i < childrens_count; ++i) + for (int i = 0; i < children_count; ++i) { result.add(new VHDLComponent(local_id, components.item(i))); } -- cgit v1.2.3-70-g09d2