summaryrefslogtreecommitdiff
path: root/src/runtime/java/Test.java
AgeCommit message (Collapse)Author
2014-12-16change in the API for literalskr.angelov
The API in the C runtime as well as in the Haskell, Python and Java binding is changed. Now instead of adding the literal callbacks to the concrete syntax you need to supply them every time when you need to parse. The main reason is: - referentially transparent API for Haskell - when we start using memory mapped files we will not be allowed to change anything in the grammar data structures. At that point the old API would be impossible to use.
2014-08-11a partial support for def rules in the C runtimekr.angelov
The def rules are now compiled to byte code by the compiler and then to native code by the JIT compiler in the runtime. Not all constructions are implemented yet. The partial implementation is now in the repository but it is not activated by default since this requires changes in the PGF format. I will enable it only after it is complete.
2014-06-17now the named entities recognizer returns dictionary entries if the name is ↵kr.angelov
known
2013-09-06added exhaustive generation in the Java bindingkr.angelov
2013-08-29more carefull tracking of references in the Java bindingkr.angelov
2013-08-28fix the error handling in the Java bindingkr.angelov
2013-08-27linearization in the Java bindingkr.angelov
2013-08-27parsing from the Java bindingkr.angelov
2013-08-01a bit more on the Java to C binding. Now it is possible to load a grammar ↵kr.angelov
and query for the list of languages
2013-05-28added a test class for the Java API plus a small refinement in the ↵kr.angelov
implementation for the binding