360361362363364365366367368
* @return * @throws SyntaxError */ public double evaluate() { if (fNode == null) { throw new SyntaxError(0, 0, 0, " ", "No parser input defined", 1); } return evaluateNode(fNode); }
305306307308309310311312313
391392393394395396397398399