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

cn.sj1.tinyasm.core.LocalsVariable Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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