jackfiled
cf19f8197e
Reviewed-on: https://git.bupt-hpc.cn/jackfiled/CanonSharp/pulls/3 Co-authored-by: jackfiled <xcrenchangjun@outlook.com> Co-committed-by: jackfiled <xcrenchangjun@outlook.com>
9 lines
273 B
C#
9 lines
273 B
C#
namespace CanonSharp.Pascal.SyntaxTree;
|
|
|
|
public sealed class BlockNode(IEnumerable<SyntaxNodeBase> statements) : SyntaxNodeBase
|
|
{
|
|
public override SyntaxNodeType NodeType => SyntaxNodeType.Block;
|
|
|
|
public IList<SyntaxNodeBase> Statements => statements.ToList();
|
|
}
|