Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2021-07-28 10:18:36 +00:00
parent 25fef55830
commit 5fee2f2ed7
8 changed files with 337 additions and 587 deletions

View file

@ -109,6 +109,22 @@ class Argument {
};
return this;
};
/**
* Make option-argument required.
*/
argRequired() {
this.required = true;
return this;
}
/**
* Make option-argument optional.
*/
argOptional() {
this.required = false;
return this;
}
}
/**