gw.lang.parser.expressions.IBlockInvocation Maven / Gradle / Ivy
/*
* Copyright 2014 Guidewire Software, Inc.
*/
package gw.lang.parser.expressions;
import gw.lang.parser.IExpression;
import gw.lang.reflect.IBlockType;
public interface IBlockInvocation extends IExpression
{
public IBlockType getBlockType();
}