All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.htmlunit.corejs.javascript.LazyLoadSlot Maven / Gradle / Ivy

package org.htmlunit.corejs.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