* Adds an expression to the expression list.
*/
public int addMethodExpr(String value, String sigString)
throws JspParseException, ELException
{
JspELParser parser = new JspELParser(_elContext, value);
com.caucho.el.Expr expr = parser.parse();
Class<?> retType = void.class;
Class<?> []args = new Class[0];
try {