prompto.compiler.IConstantOperand Maven / Gradle / Ivy
The newest version!
package prompto.compiler;
public interface IConstantOperand extends IOperand {
int getTag();
void register(ConstantsPool pool);
void writeTo(ByteWriter writer);
int getIndexInConstantPool();
default int size() {
return 1;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy