Files
irongo/src/IronGo/AST/Interfaces/IStatement.cs
2025-07-23 00:47:04 -04:00

8 lines
147 B
C#

namespace MarketAlly.IronGo.AST;
/// <summary>
/// Marker interface for all Go statements
/// </summary>
public interface IStatement : IGoNode
{
}