-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add inlay hints for function call args (#1473)
* add inlay hints for function call args Signed-off-by: shruti2522 <[email protected]> make fmt Signed-off-by: shruti2522 <[email protected]> add inlay hints for function call args Signed-off-by: shruti2522 <[email protected]> * fix ci Signed-off-by: shruti2522 <[email protected]> remove inlay hints for kwargs Signed-off-by: shruti2522 <[email protected]> remove kw_name Signed-off-by: shruti2522 <[email protected]> fix ci Signed-off-by: shruti2522 <[email protected]> add inlay hints for function call args Signed-off-by: shruti2522 <[email protected]> make fmt Signed-off-by: shruti2522 <[email protected]> add inlay hints for function call args Signed-off-by: shruti2522 <[email protected]> test ci Signed-off-by: shruti2522 <[email protected]> test ci Signed-off-by: shruti2522 <[email protected]> fix indexing error Signed-off-by: shruti2522 <[email protected]> fix ci Signed-off-by: shruti2522 <[email protected]> update test snaps Signed-off-by: shruti2522 <[email protected]> fix ci Signed-off-by: shruti2522 <[email protected]> fix ci Signed-off-by: shruti2522 <[email protected]> * update snaps Signed-off-by: shruti2522 <[email protected]> * remove hints for builtin func calls Signed-off-by: shruti2522 <[email protected]> remove inlay hints for system module functions Signed-off-by: shruti2522 <[email protected]> change function name Signed-off-by: shruti2522 <[email protected]> fix ci Signed-off-by: shruti2522 <[email protected]> remove hints for builtin func calls Signed-off-by: shruti2522 <[email protected]> * update builtin loader snap to incliude inlay hints Signed-off-by: shruti2522 <[email protected]> * test inlay hints Signed-off-by: shruti2522 <[email protected]> * add function type param Signed-off-by: shruti2522 <[email protected]> * fix ci Signed-off-by: shruti2522 <[email protected]> * add get_hint for expression Signed-off-by: shruti2522 <[email protected]> * add value symbol Signed-off-by: shruti2522 <[email protected]> * correct character position Signed-off-by: shruti2522 <[email protected]> --------- Signed-off-by: shruti2522 <[email protected]>
- Loading branch information
1 parent
128012c
commit 8092444
Showing
5 changed files
with
166 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,9 @@ ee = { | |
a: "asda" | ||
} | ||
ccc = 1Ki | ||
|
||
func = lambda x, y, z{ | ||
x * y + z | ||
} | ||
|
||
k = func(a, 1, z = 2) |