On Wed, 2020-10-07 at 15:57 +0200, Noel Grandin wrote:
> We use a top-down recursive descent parser, and we have separate
> documentation files which we pass through a build-time
> tool to generate BNF-type diagrams.
This one, right?
public static Bnf getInstance(Reader csv) throws
SQLException, IOException {
Bnf bnf = new Bnf();
if (csv == null) {
byte[] data = Utils.getResource("/org/h2/res/help.csv");
csv = new InputStreamReader(new
ByteArrayInputStream(data));
}
bnf.parse(csv);
return bnf;
}
Thanks a lot, I appreciate!
Andreas
--
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/h2-database/ad64c4582371b4c2c5e294d38e9132d61d5ac575.camel%40manticore-projects.com.