25 lines
654 B
C#
25 lines
654 B
C#
|
using CanonSharp.Benchmark.Canon.Core.Abstractions;
|
|||
|
using CanonSharp.Benchmark.Canon.Core.Enums;
|
|||
|
|
|||
|
namespace CanonSharp.Benchmark.Canon.Core.SyntaxNodes;
|
|||
|
|
|||
|
public class SubprogramBody : NonTerminatedSyntaxNode
|
|||
|
{
|
|||
|
public override NonTerminatorType Type => NonTerminatorType.SubprogramBody;
|
|||
|
|
|||
|
public override void PreVisit(SyntaxNodeVisitor visitor)
|
|||
|
{
|
|||
|
visitor.PreVisit(this);
|
|||
|
}
|
|||
|
|
|||
|
public override void PostVisit(SyntaxNodeVisitor visitor)
|
|||
|
{
|
|||
|
visitor.PostVisit(this);
|
|||
|
}
|
|||
|
|
|||
|
public static SubprogramBody Create(List<SyntaxNodeBase> children)
|
|||
|
{
|
|||
|
return new SubprogramBody() { Children = children };
|
|||
|
}
|
|||
|
}
|