* @return The {@link DependencyType} that should be used when resolving the
* type of this variable definition
*/
protected DependencyType getTypeDependencyType()
{
DependencyType dt = DependencyType.EXPRESSION;
if (getVariableClassification() != VariableClassification.LOCAL)
dt = DependencyType.SIGNATURE;
return dt;
}