finn-lang/AST.cs

8 lines
170 B
C#
Raw Normal View History

namespace Finn.AST;
public record Name(string Value, bool Quoted);
2023-07-02 17:38:48 +00:00
public record Field(Name Name, Expr? Value);
public record BaseRecord(Expr Value, Field[] Updates);