< prev index next >

src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/FindProperty.java

Print this page

        

*** 216,232 **** } /** * Get the property value from self as object. * @return the property value */ - public long getLongValue() { - return property.getLongValue(getGetterReceiver(), getOwner()); - } - /** - * Get the property value from self as object. - * @return the property value - */ public double getDoubleValue() { return property.getDoubleValue(getGetterReceiver(), getOwner()); } /** * Get the property value from self as object. --- 216,225 ----
*** 246,265 **** property.setValue(getSetterReceiver(), getOwner(), value, strict); } /** * Set the property value in self. - * - * @param value the new value - * @param strict strict flag - */ - public void setValue(final long value, final boolean strict) { - property.setValue(getSetterReceiver(), getOwner(), value, strict); - } - - /** - * Set the property value in self. * * @param value the new value * @param strict strict flag */ public void setValue(final double value, final boolean strict) { --- 239,248 ----
< prev index next >