You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Hover sometimes show wrong class name for variables.
To Reproduce
Open this code in editor and hover on unit variable in different places
Hover show different class for variable in different places
This also affects diagnostics, but autocomplete works flawlessly
---@class CEntityInstance
CEntityInstance = {}
---@class CBaseEntity:CEntityInstance
CBaseEntity = {}
---@class CBaseModelEntity:CBaseEntity
CBaseModelEntity = {}
---@class CBaseAnimating:CBaseModelEntity
CBaseAnimating = {}
---@class CBaseFlex:CBaseAnimating
CBaseFlex = {}
---@class CDOTA_BaseNPC:CBaseFlex
CDOTA_BaseNPC = {}
---@return string
function CDOTA_BaseNPC:GetUnitName() end
---@return number
function CDOTA_BaseNPC:GetHealth() end
---@return CDOTA_BaseNPC
function CreateTestUnit() end
local unit = CreateTestUnit()
local unit_name = unit:GetUnitName()
local health = unit:GetHealth()
unit.test = 1
unit.test2 = 2
unit.testField = 3
if unit.testField then
local test = unit.testField
end
Expected behavior
Expected unit var always have type CDOTA_BaseNPC
Screenshots
Environment :
OS: Windows 10
Client: VSCode
The text was updated successfully, but these errors were encountered:
Describe the bug
Hover sometimes show wrong class name for variables.
To Reproduce
Open this code in editor and hover on unit variable in different places
Hover show different class for variable in different places
This also affects diagnostics, but autocomplete works flawlessly
Expected behavior
Expected unit var always have type CDOTA_BaseNPC
Screenshots




Environment :
The text was updated successfully, but these errors were encountered: