1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

jsgen: small fix - remove trailing comma in export

This commit is contained in:
Leah Lundqvist 2020-06-03 16:30:43 +02:00 committed by GitHub
parent 8a23cfc0d6
commit 5e2a6ffe65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,8 +118,9 @@ pub fn gen(files []ast.File, table &table.Table, pref &pref.Preferences) string
out += '\n\t/* module exports */'
}
out += '\n\treturn {'
for pub_var in g.namespaces_pub[node.name] {
out += '\n\t\t$pub_var,'
for i, pub_var in g.namespaces_pub[node.name] {
out += '\n\t\t$pub_var'
if i < g.namespaces_pub[node.name].len - 1 { out += ',' }
}
if g.namespaces_pub[node.name].len > 0 { out += '\n\t' }
out += '};'