Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong class name for variables #406

Closed
ZLOY5 opened this issue Feb 21, 2021 · 0 comments
Closed

Wrong class name for variables #406

ZLOY5 opened this issue Feb 21, 2021 · 0 comments
Labels
bug Something isn't working

Comments

@ZLOY5
Copy link

ZLOY5 commented Feb 21, 2021

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
image
image
image
image

Environment :

  • OS: Windows 10
  • Client: VSCode
@sumneko sumneko added the bug Something isn't working label Feb 21, 2021
sumneko added a commit that referenced this issue Feb 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants