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

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

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

import com.dragome.compiler.generators.AbstractVisitor;

public class ContinueStatement extends LabeledJump
{

	public ContinueStatement(Block block)
	{
		super(block);
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy