Include attributes in JsonEncoder for functions

This commit is contained in:
Micah 2024-10-06 18:54:23 -07:00
parent ae7b07d60f
commit 85c6dd1602
No known key found for this signature in database

View file

@ -425,6 +425,7 @@ struct AstJsonEncoder : public AstVisitor
"AstExprFunction",
[&]()
{
PROP(attributes);
PROP(generics);
PROP(genericPacks);
if (node->self)
@ -894,7 +895,7 @@ struct AstJsonEncoder : public AstVisitor
"AstStatDeclareFunction",
[&]()
{
// TODO: attributes
PROP(attributes);
PROP(name);
PROP(nameLocation);
PROP(params);
@ -1042,6 +1043,7 @@ struct AstJsonEncoder : public AstVisitor
"AstTypeFunction",
[&]()
{
PROP(attributes);
PROP(generics);
PROP(genericPacks);
PROP(argTypes);
@ -1136,6 +1138,31 @@ struct AstJsonEncoder : public AstVisitor
);
}
void write(AstAttr::Type type)
{
switch (type)
{
case AstAttr::Type::Checked:
return writeString("checked");
case AstAttr::Type::Native:
return writeString("native");
default:
return writeRaw("null");
}
}
void write(class AstAttr* node)
{
writeNode(
node,
"AstAttr",
[&]()
{
write("name", node->type);
}
);
}
bool visit(class AstTypeSingletonBool* node) override
{
writeNode(