зеркало из https://github.com/mozilla/pjs.git
Fix infinite loop in example.
This commit is contained in:
Родитель
055775a495
Коммит
89d00fda22
|
@ -259,7 +259,9 @@ public class Matrix implements Scriptable {
|
||||||
public boolean hasInstance(Scriptable value) {
|
public boolean hasInstance(Scriptable value) {
|
||||||
Scriptable proto = value.getPrototype();
|
Scriptable proto = value.getPrototype();
|
||||||
while (proto != null) {
|
while (proto != null) {
|
||||||
if (proto.equals(this)) return true;
|
if (proto.equals(this))
|
||||||
|
return true;
|
||||||
|
proto = proto.getPrototype();
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче