namespace meowlang.parser; public record FunctionModel(Span Span, List Attributes, bool Pub, string Name, List TypeParameters, List Parameters, List Returns, List Constraints, ExpressionModel Body) : TopLevelConstructModel(Span);