Description
Bug Report
π Search Terms
- inlay hints
TypeScript βΊ Inlay Hints βΊ Function Like Return Types: Enabled
π Version & Regression Information
4.4.0-dev.20210727
Not a regression
π» Code
class Foo {
prop = 1
foo() { return 1; }
get bar() { return 1; }
}
Enable all inlay hints in VS Code, specifically: TypeScript βΊ Inlay Hints βΊ Function Like Return Types: Enabled
π Actual behavior
Hints are shown on foo
but not on bar
:
π Expected behavior
I think we should include hints for getters if TypeScript βΊ Inlay Hints βΊ Function Like Return Types: Enabled
is enabled