grumbling

This commit is contained in:
rusefillc 2022-01-04 23:55:48 -05:00
parent 005f322ac9
commit 25d3a401f3
3 changed files with 6 additions and 2 deletions

View File

@ -208,8 +208,6 @@ public class ConfigDefinition {
// Parse the input files
{
// First process yaml files
//processYamls(parseState, yamlFiles);
// Load prepend files
{

View File

@ -8,6 +8,9 @@ import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintStream;
/**
* proposed alternative which does not seem to be covered by any unit tests
*/
public class CStructWriter {
public void writeCStructs(ParseState parser, String outputFile) throws FileNotFoundException {
PrintStream ps = new PrintStream(new FileOutputStream(outputFile));

View File

@ -8,6 +8,9 @@ import java.io.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* proposed alternative which does not seem to be covered by any unit tests
*/
public class TsWriter {
// matches strings in the form of @@MY_var_123@@
private static final Pattern VAR = Pattern.compile("@@([a-zA-Z0-9_]+?)@@");