September 28, 2007 – 2:50 am
In the course of trying to adapt an ANTLR lexer to be used in an Intellij IDEA language plugin, I found that I’d written this:
token = lexer.nextToken();
if (token != null)
{
tokenStart = findCharPos(token.getLine(), token.getColumn());
if (token.getText() == null)
{
[...]
September 24, 2007 – 10:13 pm
The technique described in my previous post can be used to create Tapestry 5 pages which call CAL functions. Tapestry also uses Javassist to enhance pages, so adding CAL integration requires that Tapestry is reconfigured to apply the CAL transformations in addition to its own — I wasn’t able to find a way to transparently [...]