8 lines
147 B
C#
8 lines
147 B
C#
namespace MarketAlly.IronGo.AST;
|
|
|
|
/// <summary>
|
|
/// Marker interface for all Go statements
|
|
/// </summary>
|
|
public interface IStatement : IGoNode
|
|
{
|
|
} |