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

org.pure4j.model.StackArgumentsMethodHandle Maven / Gradle / Ivy

Go to download

Parses Byte-code to check the purity semantics defined using pure4j-core annotations

The newest version!
package org.pure4j.model;

import java.util.List;

public class StackArgumentsMethodHandle extends MethodHandle implements StackArgumentsHandle {

	private boolean firstCall;

	public boolean isFirstCall() {
		return firstCall;
	}

	public StackArgumentsMethodHandle(String className, String name, String desc, int line, List localVariables, boolean firstCall) {
		super(className, name, desc, line);
		this.localVariables = localVariables == null ? this.localVariables : localVariables;
		this.firstCall = firstCall;
	}
	
	public List getLocalVariables() {
		return localVariables;
	}

	protected List localVariables;
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy