Skip to content

Commit

Permalink
Merge pull request #2979 from Luke100000/master
Browse files Browse the repository at this point in the history
Added support for arrays in meta build tool
  • Loading branch information
sumneko authored Dec 6, 2024
2 parents 7b2d585 + 6fbe305 commit 6b86deb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/love-api.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ function buildType(param)
if param.table then
return buildDocTable(param.table)
end
if param.arraytype then
return ('%s[]'):format(getTypeName(param.arraytype))
end
return getTypeName(param.type)
end

Expand Down

0 comments on commit 6b86deb

Please sign in to comment.