namespace MarketAlly.IronGo.AST; /// /// Represents a fallthrough statement in a switch case /// public class FallthroughStatement : GoNodeBase, IStatement { public FallthroughStatement(Position start, Position end) : base(start, end) { } public override void Accept(IGoAstVisitor visitor) => visitor.VisitFallthroughStatement(this); public override T Accept(IGoAstVisitor visitor) => visitor.VisitFallthroughStatement(this); }