File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 66
77namespace CommandLine
88{
9- sealed class TypeInfo
9+ public sealed class TypeInfo
1010 {
1111 private readonly Type current ;
1212 private readonly IEnumerable < Type > choices ;
@@ -27,12 +27,12 @@ public IEnumerable<Type> Choices
2727 get { return this . choices ; }
2828 }
2929
30- public static TypeInfo Create ( Type current )
30+ internal static TypeInfo Create ( Type current )
3131 {
3232 return new TypeInfo ( current , Enumerable . Empty < Type > ( ) ) ;
3333 }
3434
35- public static TypeInfo Create ( Type current , IEnumerable < Type > choices )
35+ internal static TypeInfo Create ( Type current , IEnumerable < Type > choices )
3636 {
3737 return new TypeInfo ( current , choices ) ;
3838 }
@@ -78,7 +78,7 @@ public ParserResultType Tag
7878 get { return this . tag ; }
7979 }
8080
81- internal TypeInfo TypeInfo
81+ public TypeInfo TypeInfo
8282 {
8383 get { return typeInfo ; }
8484 }
@@ -216,4 +216,4 @@ public bool Equals(NotParsed<T> other)
216216 && Errors . SequenceEqual ( other . Errors ) ;
217217 }
218218 }
219- }
219+ }
You can’t perform that action at this time.
0 commit comments