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

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

There is a newer version: 2.11.0
Show newest version
package cfml.parsing.cfscript;

public class CFCall implements java.io.Serializable {
	
	private static final long serialVersionUID = 1L;
	
	private CFScopeStack _scopeStack;
	
	public CFCall() {
		_scopeStack = new CFScopeStack();
		// The scope for local variables and parameters
		_scopeStack.push(new CFCallScope());
	}
	
	// Push a new ("with") scope
	public void push(CFScope scope) {
		_scopeStack.push(scope);
	}
	
	// Pop the innermost ("with") scope
	public void pop() {
		_scopeStack.pop();
	}
	
	public CFScopeStack scopeStack() {
		return _scopeStack;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy