File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 6
6
7
7
namespace CommandLine
8
8
{
9
- sealed class TypeInfo
9
+ public sealed class TypeInfo
10
10
{
11
11
private readonly Type current ;
12
12
private readonly IEnumerable < Type > choices ;
@@ -27,12 +27,12 @@ public IEnumerable<Type> Choices
27
27
get { return this . choices ; }
28
28
}
29
29
30
- public static TypeInfo Create ( Type current )
30
+ internal static TypeInfo Create ( Type current )
31
31
{
32
32
return new TypeInfo ( current , Enumerable . Empty < Type > ( ) ) ;
33
33
}
34
34
35
- public static TypeInfo Create ( Type current , IEnumerable < Type > choices )
35
+ internal static TypeInfo Create ( Type current , IEnumerable < Type > choices )
36
36
{
37
37
return new TypeInfo ( current , choices ) ;
38
38
}
@@ -78,7 +78,7 @@ public ParserResultType Tag
78
78
get { return this . tag ; }
79
79
}
80
80
81
- internal TypeInfo TypeInfo
81
+ public TypeInfo TypeInfo
82
82
{
83
83
get { return typeInfo ; }
84
84
}
@@ -216,4 +216,4 @@ public bool Equals(NotParsed<T> other)
216
216
&& Errors . SequenceEqual ( other . Errors ) ;
217
217
}
218
218
}
219
- }
219
+ }
You can’t perform that action at this time.
0 commit comments