meowlang/parser/StructDeclarationModel.cs

4 lines
255 B
C#
Raw Permalink Normal View History

namespace meowlang.parser;
public record StructDeclarationModel(Span Span, List<AttributeModel> Attributes, bool Pub, string Name, List<string> TypeParameters,
List<ConstraintModel> Constraints, StructTypeModel Struct) : TopLevelConstructModel(Span);