Given this as3 class:
package testing.it {
public class Foo {
public function Foo() {
var me : testing.it.Foo = new testing.it.Foo();
}
}
}
IDEA complains with the two warnings: "Unresolved variable" and "Unresolved variable or type" for "testing" and "testing" + "it".
Should be recoqnized as FQCN expressions.