namespace Fungus { /// /// Interface for indicating that the class holds a reference to and may call a block /// public interface IBlockCaller : IStringLocationIdentifier { bool MayCallBlock(Block block); } }