Update JsonEncoder.cpp (#279)

fix JsonEncoder so that AstArray elems are given commas seperating them
This commit is contained in:
Braeden 2021-12-07 10:14:35 -06:00 committed by GitHub
parent 3eff1b214e
commit 2807dcb758
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -262,7 +262,7 @@ struct AstJsonEncoder : public AstVisitor
if (comma)
writeRaw(",");
else
comma = false;
comma = true;
write(a);
}