diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-12-06 18:43:41 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-12-06 18:43:41 +0800 |
commit | 3b10146369eb3ef0052b832272a5efcaa066d8eb (patch) | |
tree | 449396a6286da6e8952f50e55a7417b4d65fe52f /server/locale/enUS/libs/lua53/basic.lni | |
parent | d670882f016ee5a879f2fe3fa4a7bd2eff581bb0 (diff) | |
download | lua-language-server-3b10146369eb3ef0052b832272a5efcaa066d8eb.zip |
合并enum和field的翻译
Diffstat (limited to 'server/locale/enUS/libs/lua53/basic.lni')
-rw-r--r-- | server/locale/enUS/libs/lua53/basic.lni | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/server/locale/enUS/libs/lua53/basic.lni b/server/locale/enUS/libs/lua53/basic.lni index 5fd44fdc..e600857f 100644 --- a/server/locale/enUS/libs/lua53/basic.lni +++ b/server/locale/enUS/libs/lua53/basic.lni @@ -1,12 +1,25 @@ [assert] [collectgarbage] +[[.enums]] +enum = 'collect' +description = 'performs a full garbage-collection cycle. This is the default option.' +[[.enums]] +enum = 'isrunning' +description = 'returns a boolean that tells whether the collector is running (i.e., not stopped).' +[[.enums]] +enum = 'count' +description = 'returns the total memory in use by Lua in Kbytes. The value has a fractional part, so that it multiplied by 1024 gives the exact number of bytes in use by Lua (except for overflows).' [dofile] [error] [_G] +description = 'A global variable (not a function) that holds the global environment' +[[.fields]] +field = '_G' +description = 'A global variable (not a function) that holds the global environment' [getmetatable] |