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

VSCode Function hover tooltip not working for 'this' instance #571

Closed
sousvideonlow opened this issue Aug 17, 2024 · 2 comments
Closed

VSCode Function hover tooltip not working for 'this' instance #571

sousvideonlow opened this issue Aug 17, 2024 · 2 comments

Comments

@sousvideonlow
Copy link

2024-08-16 11-01-47

[code]class class1 ; able to see function definitions
{
__New()
{
g:=Gui()
g.add()
}
}

class class2 ; NOT able to see function definitions
{
__New()
{
this.g:=Gui()
this.g.add()
}
}

[/code]

@thqby
Copy link
Owner

thqby commented Aug 18, 2024

Only the following are supported.

class class2
{
g:=Gui()
__New()
{
this.g.add()
}
}

@sousvideonlow
Copy link
Author

Ok can accept that to define it will have to be above

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants