File tree Expand file tree Collapse file tree 6 files changed +14
-9
lines changed
src/lsp/handlers/hover-handler Expand file tree Collapse file tree 6 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to the "bitloops-language" extension will be documented in t
44
55Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
66
7+ ### 0.4.1
8+
9+ Fixed bug of hover for multiple files workspace
10+
711### 0.4.0
812
913Added hover provider for type of variables
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ No known issues.
3333
3434## What's New
3535
36- ### 0.4.0
36+ ### 0.4.1
3737
38- Added hover provider for type of variables
38+ Fixed bug of hover for multiple files workspace
3939
4040---
4141
Original file line number Diff line number Diff line change 99 },
1010 "icon" : " assets/images/bitloops-language-logo-256x256.png" ,
1111 "license" : " MIT" ,
12- "version" : " 0.4.0 " ,
12+ "version" : " 0.4.1 " ,
1313 "scripts" : {
1414 "vs:package" : " vsce package" ,
1515 "vs:publish" : " vsce publish" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " bitloops-lsp-server" ,
33 "description" : " BitLoops Language Server" ,
4- "version" : " 0.4.0 " ,
4+ "version" : " 0.4.1 " ,
55 "publisher" : " Bitloops" ,
66 "license" : " MIT" ,
77 "engines" : {
1010 "type" : " module" ,
1111 "scripts" : {},
1212 "dependencies" : {
13- "@bitloops/bl-transpiler" : " ^0.6.8 " ,
13+ "@bitloops/bl-transpiler" : " ^0.6.10 " ,
1414 "debounce" : " ^1.2.1" ,
1515 "fs" : " ^0.0.1-security" ,
1616 "path" : " ^0.12.7" ,
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export const handleHover = (
2020 const typeOfKeyword = testSymbolTable ?. findTypeOfKeyword ( word , {
2121 line : position . line ,
2222 column : position . character ,
23+ fileId : params . textDocument . uri ,
2324 } ) ;
2425 let { type, isConst } = typeOfKeyword || { type : null , isConst : null } ;
2526 if ( type ) {
Original file line number Diff line number Diff line change 22# yarn lockfile v1
33
44
5- " @bitloops/bl-transpiler@^0.6.8 " :
6- version "0.6.8 "
7- resolved "https://registry.yarnpkg.com/@bitloops/bl-transpiler/-/bl-transpiler-0.6.8 .tgz#c6c33356bbaa25c26fc898c1a4e2e32cd84f035f "
8- integrity sha512-nNWTiDK7faX23i0BqEWt+66LbiY+u3waVZzStRQYpp6aVnnWgarspEBQg3vLjdj7wZfSfxfS0+TOIDRKACx0IQ ==
5+ " @bitloops/bl-transpiler@^0.6.10 " :
6+ version "0.6.10 "
7+ resolved "https://registry.yarnpkg.com/@bitloops/bl-transpiler/-/bl-transpiler-0.6.10 .tgz#5acbfb349963b91bfe3628154f8285a6b3c9ff85 "
8+ integrity sha512-MUrjH7lWVD42fZv1OQnSCwO97OZhm1io3GYv+1AZ2rgIT9MczJCASY4BtB/LqkB9zevReo3KFX0XF/5Yhpr5Hw ==
99 dependencies :
1010 antlr4 "4.11.0"
1111 lodash "^4.17.21"
You can’t perform that action at this time.
0 commit comments