Skip to content

v2.2.0

Latest
Compare
Choose a tag to compare
@uwol uwol released this 13 Dec 14:32

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);