final ErlangProjectProperties result = new ErlangProjectProperties();
Path _path = new Path("ebin");
result.setOutputDir(_path);
result.setSourceDirs();
IErlangEngine _instance = ErlangEngine.getInstance();
SimpleParserService _simpleParserService = _instance.getSimpleParserService();
final List<OtpErlangObject> content = _simpleParserService.parse(config);
boolean _isEmpty = content.isEmpty();
if (_isEmpty) {
return result;
}
final Procedure1<OtpErlangObject> _function = new Procedure1<OtpErlangObject>() {