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

org.jruby.ir.targets.InstanceVariableCompiler Maven / Gradle / Ivy

package org.jruby.ir.targets;

public interface InstanceVariableCompiler {
    /**
     * Store instance variable into self.
     * 

* Stack required: self, value * Stack result: empty * * @param name name of variable to store */ public abstract void putField(String name); /** * Load instance variable from self. *

* Stack required: self * Stack result: value from self * * @param name name of variable to load */ public abstract void getField(String name); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy