Age | Commit message (Collapse) | Author |
|
|
|
Fixes: #2788
|
|
The previous hello jsonrpc message caused sadness
since it caused lsp clients to exit as it was not
a correct way to say hello.
|
|
|
|
|
|
|
|
|
|
|
|
if vm.runOperator fails try again with flipped arguments
this emulates how lua checks the binary metaevents in which
if there is no corresponding binary metaevent for the left
operand it checks the right operand instead. This also works
when both operands are tables.
This change affects:
- __add
- __sub
- __mul
- __div
- __idiv
- __mod
- __pow
- __concat
- __band
- __bor
- __bxor
- __shl
- __shr
|
|
|
|
|
|
|
|
#2786
|
|
fix 2778
|
|
fix #2776
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Co-authored-by: Tom Lau <tomandfatboy@gmail.com>
|
|
inconsistent-behavior-(missing-fields)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fixes-a-specific-case-for-getVisibleType
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
The current hash function used to distribute work seems not perfect.
We can actually use round robin to distribute after sorting file list.
|