final public TextConstructor parseCompTextConstructor() throws ParseException, XQueryException {
final XQExpression content;
currentToken = jj_consume_token(TextLbrace);
content = parseExpr();
currentToken = jj_consume_token(Rbrace);
final TextConstructor tc = new TextConstructor(content);
locate(tc);
{
if(true)
return tc;
}