Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/argparse/lib/action/count.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

40 lines (35 sloc)
1.01 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*:nodoc:* | |
* class ActionCount | |
* | |
* This counts the number of times a keyword argument occurs. | |
* For example, this is useful for increasing verbosity levels | |
* | |
* This class inherided from [[Action]] | |
* | |
**/ | |
'use strict'; | |
var util = require('util'); | |
var Action = require('../action'); | |
/*:nodoc:* | |
* new ActionCount(options) | |
* - options (object): options hash see [[Action.new]] | |
* | |
**/ | |
var ActionCount = module.exports = function ActionCount(options) { | |
options = options || {}; | |
options.nargs = 0; | |
Action.call(this, options); | |
}; | |
util.inherits(ActionCount, Action); | |
/*:nodoc:* | |
* ActionCount#call(parser, namespace, values, optionString) -> Void | |
* - parser (ArgumentParser): current parser | |
* - namespace (Namespace): namespace for output data | |
* - values (Array): parsed values | |
* - optionString (Array): input option string(not parsed) | |
* | |
* Call the action. Save result in namespace object | |
**/ | |
ActionCount.prototype.call = function (parser, namespace) { | |
namespace.set(this.dest, (namespace[this.dest] || 0) + 1); | |
}; |