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:
parent
8a23cfc0d6
commit
5e2a6ffe65
@ -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 += '};'
|
||||
|
Loading…
Reference in New Issue
Block a user