mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 02:40:53 +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)
|
||||
writeRaw(",");
|
||||
else
|
||||
comma = false;
|
||||
comma = true;
|
||||
|
||||
write(a);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue