summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-07-28update changelogNeOzay
2024-07-28undo branche mergeNeOzay
2024-07-28compute table keys onceNeOzay
2024-07-28Update script/core/diagnostics/missing-fields.luaNeOzay
Co-authored-by: Tom Lau <tomandfatboy@gmail.com>
2024-07-28Update changelog.mdNeOzay
Co-authored-by: Tom Lau <tomandfatboy@gmail.com>
2024-07-24Merge commit 'c08410458924a9f3c604e662cfce80f0f86d5b78' into ↵NeOzay
inconsistent-behavior-(missing-fields)
2024-07-24also detects missing index fieldsNeOzay
2024-07-23Merge branch 'master' into inconsistent-behavior-(missing-fields)NeOzay
2024-07-23update changelogNeOzay
2024-07-23improve missing-fields diagnostic logicNeOzay
2024-07-22improve diagnosis (missing-fields).NeOzay
2024-07-22remove unnecessary diffNeOzay
2024-07-22Merge pull request #2765 from tomlau10/fix/inconsistent_type_narrow最萌小汐
fix: inconsistent type narrow due to outdated node caches of call.args
2024-07-21Remove and fix some codeNeOzay
2024-07-21check that the shape of the table corresponds to the classNeOzay
2024-07-17fix: inconsistent type narrow due to outdated node caches of call.argsTom Lau
2024-07-15Merge pull request #2756 from qwertycxz/master最萌小汐
Fixed wholeMatch function
2024-07-15Merge branch 'master' into master最萌小汐
2024-07-15Merge pull request #2755 from NeOzay/fixes-a-specific-case-for-getVisibleType最萌小汐
fix a specific case for getVisibleType
2024-07-15Merge branch 'master' into fixes-a-specific-case-for-getVisibleType最萌小汐
2024-07-15Merge pull request #2753 from NeOzay/luaReg最萌小汐
added lua regular expression support for Lua.doc.<scope>Name
2024-07-15Merge branch 'master' into luaReg最萌小汐
2024-07-15Merge pull request #2747 from NeOzay/master最萌小汐
fix: add a missing check for 'inject-field' diagnostics
2024-07-15Merge branch 'master' into master最萌小汐
2024-07-15Align inlay hint spacing with other LSPsRiley Bruins
2024-07-14Fixed wholeMatch functionqwertycxz
2024-07-13add testNeOzay
2024-07-13Merge branch 'fix-missing-check-for-'inject-field'' into ↵NeOzay
fixes-a-specific-case-for-getVisibleType
2024-07-13update changelogNeOzay
2024-07-13fix a specific case for getVisibleTypeNeOzay
2024-07-13moves the match function outside of getVisibleType functionNeOzay
2024-07-12update changelogNeOzay
2024-07-12added lua regular expression support for Lua.doc.<scope>NameNeOzay
2024-07-12Remove nodiscard from string.gsubactboy168
2024-07-12macos-11 has gone最萌小汐
2024-07-09undo tasks.json fileNeOzay
2024-07-08fix: correction for `exact` classNeOzay
2024-07-08update changelogNeOzay
2024-07-08fix: add a missing check for inject-field diagnosticsNeOzay
2024-07-02处理token超出行范围的问题最萌小汐
2024-07-01Merge pull request #2739 from CppCXY/master最萌小汐
update format
2024-07-01Merge pull request #2735 from DCsunset/fix-params最萌小汐
fix: respect showParams config for local function completion
2024-07-01Merge branch 'master' into fix-params最萌小汐
2024-07-01Merge pull request #2738 from tomlau10/perf最萌小汐
Perf: Improve performance of multithreaded `--check` and `undefined-field` diagnostic
2024-07-01Merge branch 'master' of github.com:CppCXY/lua-language-serverCppCXY
2024-07-01update formatCppCXY
2024-07-01doc: Update changelogTom Lau
2024-07-01perf: Optimize undefined-field check early break logicTom Lau
The current early break only wants to check if there are any definition. There is no need to fetch the full definitions list. We can early break as soon as we found the 1st one.
2024-07-01perf: Optimize work distribution in multi-threaded `--check`Tom Lau
The current hash function used to distribute work seems not perfect. We can actually use round robin to distribute after sorting file list.
2024-06-28docs: update changelogDCsunset