HaxeFoundation / HaxeFoundation/haxe
[display] hover only reports expression instead of field for abstract properties
Open
feature-ide
- Dominant language
- Haxe
- Stars
- 6.9k
- Forks
- 715
- Avg merge
- 2d 2h
- Merged PRs (30d)
- 11
Description

Strangely, it works fine in classes, or even when just making the property static.

```haxe
class Main {
public static function main() {
var f:Foo = 0;
f.foo
}
}
abstract Foo(Int) from Int {
public var foo(get,never):Int;
function get_foo() return 0;
}
```
Contributor guide
Assessment
This issue has not been assessed yet.