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

cfml.parsing.cfscript.CFStatement Maven / Gradle / Ivy

There is a newer version: 2.11.0
Show newest version
/*
 * Expression tree's for javascript statements.
 */

package cfml.parsing.cfscript;

public interface CFStatement {
	
	public String Decompile(int indent);
	
	public void checkIndirectAssignments(String[] scriptSource);
	
	public Object getParent();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy