This release ensure consistency between the api of the ProLeap COBOL parser and the ProLeap Visual Basic 6.0 parser.
Features
- Introduction of an optional params object, which contains charset information and how to react on syntax errors.
final VbParserParams params = new VbParserParamsImpl();
params.setCharset(...);
params.setIgnoreSyntaxErrors(...);
final Program program = new VbParserRunnerImpl().analyzeFile(inputFile, params);