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);
if (null != defVal) defVal = neu + " " + defVal;
name = ExpressionParser.processPositionPlaceHolder(name);
ral.add(new F.T4(line, type, name, defVal));
}
return new Directive("", ctx()) {