119120121122123124125126127128129
{ return new ESString(what.toString ()); } if (what instanceof Number) { return new ESNumber(new Double(what.toString()).doubleValue()); } if (what instanceof Boolean) { return ESBoolean.makeBoolean(((Boolean) what).booleanValue()); }