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

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

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

public class BooleanExpression implements Cloneable
{
	private Expression expression;

	public BooleanExpression(Expression newExpression)
	{
		expression= newExpression;
	}

	public Expression getExpression()
	{
		return expression;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy