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

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

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

import org.apache.bcel.generic.ObjectType;

import com.dragome.compiler.generators.AbstractVisitor;

public class ClassInstanceCreation extends MethodInvocation
{

	public ClassInstanceCreation(ObjectType theType)
	{
		type= theType;
	}

	public ClassInstanceCreation(MethodDeclaration methodDecl, MethodBinding methodBinding)
	{
		super(methodDecl, methodBinding);
	}

	public void visit(AbstractVisitor visitor)
	{
		visitor.visit(this);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy