Releases: tulipcc/ParserGeneratorCC
Releases · tulipcc/ParserGeneratorCC
ParserGeneratorCC 1.1.4
ParserGeneratorCC 1.1.3
ParserGeneratorCC 1.1.2
- JavaCC grammar can parse Java 7 language features (JavaCC PR 71)
- Backported a CPP output fix from JavaCC
- Fixed an error in
JavaCharStream.template
ifKEEP_LINE_COLUMN
is turned off
ParserGeneratorCC 1.1.1
- Fixed an error in Java modern template
SimpleCharStream
- thanks to @nbauma109
ParserGeneratorCC 1.1.0
- Focus is on improving the quality and consistency of the template files - this may cause interoperability problem because names change etc.
- This version assumes that the created code uses at least Java 1.5 - JDK versions below 1.5 are no longer supported!
- The option
STATIC
was removed - it caused too many variations in the templates which decreases maintainability. STATIC is now alwaysfalse
! - Added new option
OUTPUT_ENCODING
to define the character set for the output files - If JDK version is at least 1.6 than
java.nio.Charset encoding
is used and notString encoding
in generated Streams. - The Java templates were modified so that the interface methods start with a lowercase character (
beginToken
instead ofBeginToken
) - the created code may need to be adopted! - A masking issue for
'
and\
characters was resolved (issue #20)
ParserGeneratorCC 1.0.2
First public usable release that can be used to build this project