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

com.dragome.compiler.graph.SwitchEdge Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;

import com.dragome.compiler.ast.NumberLiteral;

public class SwitchEdge extends Edge
{
	public List expressions= new ArrayList();

	SwitchEdge(Graph graph, Node theSource, Node theTarget)
	{
		super(graph, theSource, theTarget);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy