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