mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +01:00
Update JsonEncoder.cpp (#279)
fix JsonEncoder so that AstArray elems are given commas seperating them
This commit is contained in:
parent
3eff1b214e
commit
2807dcb758
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ struct AstJsonEncoder : public AstVisitor
|
||||||
if (comma)
|
if (comma)
|
||||||
writeRaw(",");
|
writeRaw(",");
|
||||||
else
|
else
|
||||||
comma = false;
|
comma = true;
|
||||||
|
|
||||||
write(a);
|
write(a);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue