diff --git a/mozilla/js/rhino/org/mozilla/javascript/Scriptable.java b/mozilla/js/rhino/org/mozilla/javascript/Scriptable.java index 40a138c8391..8dead5ff30d 100644 --- a/mozilla/js/rhino/org/mozilla/javascript/Scriptable.java +++ b/mozilla/js/rhino/org/mozilla/javascript/Scriptable.java @@ -178,6 +178,16 @@ public interface Scriptable { * This design allows properties to be defined in prototypes and implemented * in terms of getters and setters of Java values without consuming slots * in each instance.
+ *
+ * The values that may be set are limited to the following: + *
* Note that has will be called by the runtime first before
* set is called to determine in which object the
* property is defined.
diff --git a/mozilla/js/rhino/src/org/mozilla/javascript/Scriptable.java b/mozilla/js/rhino/src/org/mozilla/javascript/Scriptable.java
index 40a138c8391..8dead5ff30d 100644
--- a/mozilla/js/rhino/src/org/mozilla/javascript/Scriptable.java
+++ b/mozilla/js/rhino/src/org/mozilla/javascript/Scriptable.java
@@ -178,6 +178,16 @@ public interface Scriptable {
* This design allows properties to be defined in prototypes and implemented
* in terms of getters and setters of Java values without consuming slots
* in each instance.
+ *
+ * The values that may be set are limited to the following: + *
* Note that has will be called by the runtime first before
* set is called to determine in which object the
* property is defined.