Skip to content

Commit

Permalink
Updated the release documentation with features in 1.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
cederberg committed Aug 27, 2003
1 parent 55c5201 commit 77e0c95
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/doc/release/authors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<item>
<title>Marielle Fois &lt;marielle at kth dot se&gt;</title>
<text>Testing and various suggestions for improvments.
<text>Testing and various suggestions for improvements.
Original web site design.</text>
</item>
</list>
Expand Down
15 changes: 0 additions & 15 deletions src/doc/release/bugs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,6 @@
improvements.</p>

<list>
<item>
<title>General: No Ant and NAnt tasks available</title>
<text>Apache Ant and NAnt tasks should be created for
simplifying the usage. These tasks should only support
the code generation, but ought to handle both languages.
(Bug #3620)</text>
</item>

<item>
<title>Grammar: Add support for modular grammars</title>
<text>By allowing one grammar to reference another, it
Expand Down Expand Up @@ -106,13 +98,6 @@
represented with regular expressions. (Bug #3604)</text>
</item>

<item>
<title>Tokenizer: Add support for "hidden" tokens</title>
<text>This feature could be used to parse source code while
maintaining the whitespace tokens accessible in some way,
very useful for writing a code style checker. (Bug #3605)</text>
</item>

<item>
<title>Parser: Add support for LR grammars</title>
<text>This probably means writing at least an LALR(1) parser,
Expand Down
6 changes: 6 additions & 0 deletions src/doc/release/features.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@
source code. This can be used for easier debugging of
grammars, or for creating parsers interactively.</text>
</item>

<item>
<title>Integration with Apache Ant</title>
<text>Apache Ant tasks are available, integrating Grammatica
with the standard build tool for Java developers.</text>
</item>
</list>


Expand Down
11 changes: 11 additions & 0 deletions src/doc/release/version.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@
(Bug #3620)</text>
</item>

<item>
<title>Added support for retrieving all tokens</title>
<text>The <code>Tokenizer</code> class now supports enabling
a <code>useTokenList</code> feature, that will link all
tokens in a double-linked list. This can be used to access
whitespace and comment tokens, although otherwise ignored by
the parser. By default this feature is off, to avoid potetial
garbage collection problems when parsing large files.
(Bug #3605)</text>
</item>

<item>
<title>Removed API documentation for unsupported API</title>
<text>Java API documentation for the unsupported API:s in
Expand Down

0 comments on commit 77e0c95

Please sign in to comment.