233 @Override
234 public boolean isStrictFunction() {
235 return false;
236 }
237
238 /**
239 * Is this an array object?
240 *
241 * @return if this mirror wraps a ECMAScript array object
242 */
243 @Override
244 public boolean isArray() {
245 return false;
246 }
247
248 /**
249 * Returns this object's numeric value.
250 *
251 * @return this object's numeric value.
252 */
253 @Override
254 public double toNumber() {
255 return Double.NaN;
256 }
257 }
|
233 @Override
234 public boolean isStrictFunction() {
235 return false;
236 }
237
238 /**
239 * Is this an array object?
240 *
241 * @return if this mirror wraps a ECMAScript array object
242 */
243 @Override
244 public boolean isArray() {
245 return false;
246 }
247
248 /**
249 * Returns this object's numeric value.
250 *
251 * @return this object's numeric value.
252 */
253 @SuppressWarnings("deprecation")
254 @Override
255 public double toNumber() {
256 return Double.NaN;
257 }
258 }
|