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

prompto.literal.MinIntegerLiteral Maven / Gradle / Ivy

The newest version!
package prompto.literal;

import prompto.transpiler.Transpiler;
import prompto.value.IntegerValue;

public class MinIntegerLiteral extends IntegerLiteral {

	public MinIntegerLiteral() {
		super("MIN_INTEGER", new IntegerValue(Long.MIN_VALUE));
	}
	
	@Override
	public boolean transpile(Transpiler transpiler) {
		transpiler.append("-0x20000000000000");
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy