if (argtypes != null) {
if (argtypes.startsWith(", ")) argtypes = argtypes.substring( 2 );
targs = argtypes.split(", *");
}
GqlStaticLexer lexer = new GqlStaticLexer( new ANTLRStringStream( gql ));
GqlStaticParser parser = new GqlStaticParser( new CommonTokenStream( lexer ));
return parser.gqlcond( indent, "_query", args, targs );
}