By 'undefined symbol completion', I mean the following:
public class SomeClass
{
public DataMember X { get; set; } // <-- 'DataMember' symbol not yet defined
}
public class D // <-- typing 'D' should show 'DataMember' in code completion dropdown
IntelliJ supports this (facilitating a 'top-down' coding style in accordance with the step-down rule as defined in Robert C. Martin's book Clean Code).
- What is 'undefined symbol completion' properly called?
- Does the ReSharper plugin and/or the Rider IDE support it?