diff options
author | sumneko <sumneko@hotmail.com> | 2019-05-14 16:09:38 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2019-05-14 16:09:38 +0800 |
commit | b5a351cd77cb6f7ddde692557cf0c5049d5ffbac (patch) | |
tree | f633e19250fae4b7ccea8265cba029d435420eef /server/locale/en-US | |
parent | fe3930a9f692c07eede7de3cb341ea0749b2e2ba (diff) | |
download | lua-language-server-b5a351cd77cb6f7ddde692557cf0c5049d5ffbac.zip |
检查未使用的不定参数
Diffstat (limited to 'server/locale/en-US')
-rw-r--r-- | server/locale/en-US/script.lni | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/locale/en-US/script.lni b/server/locale/en-US/script.lni index 1072a894..51f99eb6 100644 --- a/server/locale/en-US/script.lni +++ b/server/locale/en-US/script.lni @@ -5,6 +5,7 @@ DIAG_UNDEF_GLOBAL = 'Undefined global `{}`.' DIAG_UNDEF_ENV_CHILD = 'Undefined variable `{}` (overloaded `_ENV` ).' DIAG_UNDEF_FENV_CHILD = 'Undefined variable `{}` (inside module).' DIAG_UNUSED_LABEL = 'Unused label `{}`.' +DIAG_UNUSED_VARARG = 'Unused vararg.' DIAG_REDEFINED_LOCAL = 'Redefined local `{}`.' DIAG_DUPLICATE_INDEX = 'Duplicate index `{}`.' DIAG_PREVIOUS_CALL = 'Parsed as function call for the previous line. It may be necessary to add a `;` before.' |