cn.sj1.tinyasm.core.LocalsVariable Maven / Gradle / Ivy
package cn.sj1.tinyasm.core;
import org.objectweb.asm.Label;
public class LocalsVariable extends ClassField {
public Label startFrom;
public Object value;
public Annotation annotation;
public LocalsVariable(int access, String name, Clazz clazz) {
super(access, name, clazz, null);
}
public LocalsVariable(Annotation annotation, String name, Clazz clazz) {
super(0, name, clazz, null);
this.annotation = annotation;
}
public LocalsVariable(String name, Clazz type, Label startFrom) {
super(0, name, type, null);
this.startFrom = startFrom;
}
public int locals = 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy