Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ptp-dev] PLDT build errors

> I'm seeing the following errors in PLDT:

Ack, sorry.  Beth, please change the line

ASTExecutableProgramNode ast = new Parser().parse(LexerFactory.createLexer(file, SourceForm.AUTO_DETECT_SOURCE_FORM, true));

to

ASTExecutableProgramNode ast = new Parser().parse(new ASTLexerFactory().createLexer(file, SourceForm.of(file)));

in each class. You'll have to Organize Imports too; the SourceForm class moved.

Jeff


Back to the top