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

Inverse order of FlatternHierarchy #506

Closed
rlsf opened this issue Jun 12, 2018 · 1 comment
Closed

Inverse order of FlatternHierarchy #506

rlsf opened this issue Jun 12, 2018 · 1 comment

Comments

@rlsf
Copy link

rlsf commented Jun 12, 2018

Hello,
The current implementation of FlatternHierarchy function returns the current type first.
This in turn causes the help routine to print the options/values attributes of the current type before inherited types.
From my point of view, however, the current type should be returned last, so common options/values which are declared in the inherited class will appear first in the help message.

example:

public class CliBase
{
  [Option("opt1")]
  public string Opt1 { get; set; }
}

public class CliCommand : CliBase
{
  [Option("opt2")]
  public string Opt2 { get; set; }
}

printing the help information for CliCommand, will result in opt2 being printed before opt1, while i expect the reverse order, so any new command inheriting from CliBase will have opt1 printed first.

the actual code change is in FlattenHierarchy method, instead of current implementation, use this one:

private static IEnumerable<Type> FlattenHierarchy(this Type type)
{
	if (type == null)
	{
		yield break;
	}

	foreach (var @interface in type.SafeGetInterfaces())
	{
		yield return @interface;
	}
	foreach (var @interface in FlattenHierarchy(type.BaseType))
	{
		yield return @interface;
	}
	yield return type;
}
@nemec nemec closed this as completed Jun 12, 2018
@nemec
Copy link
Collaborator

nemec commented Jun 12, 2018

#501

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants