Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
This is the behavior in every version I tried, and I reviewed the FAQ
β― Playground Link and π» Code
classfoo{constructor(){}/** instance bar */readonlybar='instance foo';}classfoo2extendsfoo{staticreadonlybar='class foo2';// <- look at tooltip for 'bar' here}
classfoo{constructor(){}/** instance bar */readonlybar='instance foo';// <- tooltip here for 'bar' is correct/** class bar */staticreadonlybar: string='class foo';// <- tooltip here for 'bar' is correct}classfoo2extendsfoo{staticreadonlybar='class foo2';// <- look at tooltip for 'bar' here}
Hover with the mouse over the static property of the inherited class. Is shows the jsdoc / tsdoc information from the instance property.
π Expected behavior
In the first example the tooltip should show nothing. In the second example I should see class bar.
The text was updated successfully, but these errors were encountered:
sandersn
changed the title
Wrong intellisense when mixing class and instance properties with the same name
Quick info uses JSDoc for inherited instance property with static property of same name
Oct 6, 2021
Bug Report
static class instance intellisense
Tested TS 3.3 till nightly
Workbench Repro
A bit larger example:
Workbench Repro
Hover with the mouse over the static property of the inherited class. Is shows the jsdoc / tsdoc information from the instance property.
In the first example the tooltip should show nothing. In the second example I should see
class bar.The text was updated successfully, but these errors were encountered: