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

The plugin doesn't pick up relation between field listand it's usage #234

Closed
grisevg opened this issue Apr 15, 2015 · 3 comments
Closed

Comments

@grisevg
Copy link

grisevg commented Apr 15, 2015

Plugin version: 0.9.3
IDEA: 14.1.1
OS: Win 8.1 x64
The plugin thinks that it's List class instead:

class Foo {
 var list:Int;
 public function new() {
   list = 5;
 }
}

TIR: STB-9403

@EBatTiVo
Copy link
Contributor

This is related to #95.

@as3boyan
Copy link
Contributor

as3boyan commented Feb 5, 2016

This is ok:

class Foo {
    var list2:Int;
    public function new() {
        list2 = 5;
    }
}

So the thing with resolving list, it thinks that it is a class.

EBatTiVo added a commit that referenced this issue Feb 7, 2016
Fix resolution of types and variables with similar names (Issue #234 and #405)
@EBatTiVo EBatTiVo added the Fixed label Feb 7, 2016
@EBatTiVo
Copy link
Contributor

EBatTiVo commented Feb 7, 2016

Fixed with #406: d44634b

@EBatTiVo EBatTiVo closed this as completed Feb 7, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants