Regex r = reg(dialect());
final List<F.T4<Integer, String, String, String>> ral = new ArrayList();
s = s.replaceAll("[\\n\\r]+", ",").replaceAll("[,]+", ",");
int line = ctx.currentLine();
while (r.search(s)) {
String type = r.stringMatched(2);
checkRestrictedClass(type);
String name = r.stringMatched(4);
String neu = r.stringMatched(6); // check the 'new' keyword
if (null == neu) neu = "";
String defVal = r.stringMatched(7);