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

com.dragome.compiler.ast.OperandState Maven / Gradle / Ivy

There is a newer version: 0.96-beta4
Show newest version
package com.dragome.compiler.ast;

public class OperandState
{

	int code;

	int beginIndex;

	int endIndex;

	ASTNode stmt;

	OperandState(int theCode)
	{
		code= theCode;
	}

	OperandState(int theCode, int theBeginIndex, ASTNode theStmt)
	{
		code= theCode;
		beginIndex= theBeginIndex;
		stmt= theStmt;
	}

	public String toString()
	{
		return "State: " + code + " " + stmt;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy