File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace DocoptNet.Internals
55{
66 using System . Globalization ;
77
8- class Argument : LeafPattern
8+ sealed class Argument : LeafPattern
99 {
1010 public Argument ( string name ) : base ( name , ArgValue . None ) { }
1111
Original file line number Diff line number Diff line change 33
44namespace DocoptNet . Internals
55{
6- class Command : LeafPattern
6+ sealed class Command : LeafPattern
77 {
88 public Command ( string name , bool value = false ) :
99 base ( name , value ? ArgValue . True : ArgValue . False ) { }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace DocoptNet.Internals
66 using System ;
77 using System . Text . RegularExpressions ;
88
9- partial class Option : LeafPattern
9+ sealed partial class Option : LeafPattern
1010 {
1111 public string ShortName { get ; private set ; }
1212 public string LongName { get ; private set ; }
You can’t perform that action at this time.
0 commit comments