/* 35: */ /* 36: */ protected void fillConstructorProperties(IdFunctionObject ctor) /* 37: */ { /* 38: 78 */ int attr = 7; /* 39: */ /* 40: */ /* 41: */ /* 42: 82 */ ctor.defineProperty("NaN", ScriptRuntime.NaNobj, 7); /* 43: 83 */ ctor.defineProperty( "POSITIVE_INFINITY", ScriptRuntime.wrapNumber((1.0D / 0.0D)), 7); /* 44: */ /* 45: */ /* 46: 86 */ ctor.defineProperty( "NEGATIVE_INFINITY", ScriptRuntime.wrapNumber((-1.0D / 0.0D)), 7); /* 47: */ /* 48: */ /* 49: 89 */ ctor.defineProperty( "MAX_VALUE", ScriptRuntime.wrapNumber(1.7976931348623157E+308D), 7); /* 50: */ /* 51: */ /* 52: 92 */ ctor.defineProperty("MIN_VALUE", ScriptRuntime.wrapNumber(4.9E-324D), 7); /* 53: */ /* 54: */ /* 55: */ /* 56: 96 */ super.fillConstructorProperties(ctor); /* 57: */ }
protected void fillConstructorProperties(IdFunctionObject ctor) { addIdFunctionProperty(ctor, STRING_TAG, ConstructorId_fromCharCode, "fromCharCode", 1); super.fillConstructorProperties(ctor); }
public void put(int index, Scriptable start, Object value) { if (0 <= index && index < string.length()) { return; } super.put(index, start, value); }