@@ -67,7 +67,7 @@ export abstract class CommandLineParameter {
6767 public readonly environmentVariable : string | undefined ;
6868
6969 /** @internal */
70- constructor ( definition : IBaseCommandLineDefinition ) {
70+ public constructor ( definition : IBaseCommandLineDefinition ) {
7171 this . longName = definition . parameterLongName ;
7272 this . shortName = definition . parameterShortName ;
7373 this . description = definition . description ;
@@ -173,7 +173,7 @@ export abstract class CommandLineParameterWithArgument extends CommandLineParame
173173 public readonly argumentName : string ;
174174
175175 /** @internal */
176- constructor ( definition : IBaseCommandLineDefinitionWithArgument ) {
176+ public constructor ( definition : IBaseCommandLineDefinitionWithArgument ) {
177177 super ( definition ) ;
178178
179179 if ( definition . argumentName === '' ) {
@@ -206,7 +206,7 @@ export class CommandLineChoiceParameter extends CommandLineParameter {
206206 private _value : string | undefined = undefined ;
207207
208208 /** @internal */
209- constructor ( definition : ICommandLineChoiceDefinition ) {
209+ public constructor ( definition : ICommandLineChoiceDefinition ) {
210210 super ( definition ) ;
211211
212212 if ( definition . alternatives . length < 1 ) {
@@ -302,7 +302,7 @@ export class CommandLineFlagParameter extends CommandLineParameter {
302302 private _value : boolean = false ;
303303
304304 /** @internal */
305- constructor ( definition : ICommandLineFlagDefinition ) {
305+ public constructor ( definition : ICommandLineFlagDefinition ) {
306306 super ( definition ) ;
307307 }
308308
@@ -371,7 +371,7 @@ export class CommandLineIntegerParameter extends CommandLineParameterWithArgumen
371371 private _value : number | undefined = undefined ;
372372
373373 /** @internal */
374- constructor ( definition : ICommandLineIntegerDefinition ) {
374+ public constructor ( definition : ICommandLineIntegerDefinition ) {
375375 super ( definition ) ;
376376 this . defaultValue = definition . defaultValue ;
377377 this . validateDefaultValue ( ! ! this . defaultValue ) ;
@@ -460,7 +460,7 @@ export class CommandLineStringParameter extends CommandLineParameterWithArgument
460460 private _value : string | undefined = undefined ;
461461
462462 /** @internal */
463- constructor ( definition : ICommandLineStringDefinition ) {
463+ public constructor ( definition : ICommandLineStringDefinition ) {
464464 super ( definition ) ;
465465
466466 this . defaultValue = definition . defaultValue ;
@@ -547,7 +547,7 @@ export class CommandLineStringListParameter extends CommandLineParameterWithArgu
547547 private _values : string [ ] = [ ] ;
548548
549549 /** @internal */
550- constructor ( definition : ICommandLineStringListDefinition ) {
550+ public constructor ( definition : ICommandLineStringListDefinition ) {
551551 super ( definition ) ;
552552 }
553553
0 commit comments