finn-lang/AST.cs

8 lines
170 B
C#

namespace Finn.AST;
public record Name(string Value, bool Quoted);
public record Field(Name Name, Expr? Value);
public record BaseRecord(Expr Value, Field[] Updates);