1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
As the people from University of Luebeck (now moved to the University
of Goettingen) don't have the time to maintain the TTCN3Parser, I
decided to rewrite it to fix some critical problems. I did not use
C++ and ANTLR, but Python and the PyParsing module for this. The new
version is in it's very early stages and has some major issues:
- speed: the performance is unbelievably bad
- error handling: in most cases, the error message points to a higher
level construct instead of the real problem
- no output: I did not yet implement a tree output function, '-t'
gives a pseudo-XML output of the parse tree
On the other hand, the new version follows newer TTCN-3 standards.
W. Martin Borgert, 2005-01-22
|