org.mozilla.javascript.LazyLoadSlot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.rhino
Show all versions of org.apache.servicemix.bundles.rhino
This OSGi bundle wraps rhino and rhino-engine ${pkgVersion} jar files.
The newest version!
package org.mozilla.javascript;
/**
* This is a specialization of Slot to store values that are retrieved via calls to script
* functions. It's used to load built-in objects more efficiently.
*/
public class LazyLoadSlot extends Slot {
LazyLoadSlot(Slot oldSlot) {
super(oldSlot);
}
@Override
public Object getValue(Scriptable start) {
Object val = this.value;
if (val instanceof LazilyLoadedCtor) {
LazilyLoadedCtor initializer = (LazilyLoadedCtor) val;
try {
initializer.init();
} finally {
this.value = val = initializer.getValue();
}
}
return val;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy