Skip to content
Snippets Groups Projects
Commit 32b64243 authored by dgelessus's avatar dgelessus
Browse files

Replace remaining tab indents in generated code

parent c13827a2
No related branches found
No related tags found
No related merge requests found
......@@ -509,7 +509,7 @@ public class GenParser extends DepthFirstAdapter
}
}
}
table.append("\t\t\t{");
table.append(" {");
table.append("{" + -1 + ", " +
mostFrequentAction + ", " +
......@@ -597,7 +597,7 @@ public class GenParser extends DepthFirstAdapter
}
}
table.append("\t\t\t{");
table.append(" {");
table.append("{" + (-1) + ", " + mostFrequent + "}, ");
innerArray.addElement(new int[] {-1, mostFrequent});
......@@ -648,7 +648,7 @@ public class GenParser extends DepthFirstAdapter
outerArray = new Vector();
Vector indexArray = new Vector();
index.append("\t\t\t");
index.append(" ");
for(int i = 0; i < Grammar.action_.length; i++)
{
StringBuffer s = new StringBuffer();
......@@ -679,7 +679,7 @@ public class GenParser extends DepthFirstAdapter
}
else
{
table.append("\t\t\t\"" + s + "\"," + System.getProperty("line.separator"));
table.append(" \"" + s + "\"," + System.getProperty("line.separator"));
outerArray.addElement(s.toString());
errorIndex.put(s.toString(), nextIndex);
indexArray.addElement(nextIndex);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment