Sha256: 260804d0d1019d89910ca2f861af4f21c41d132ffec692fef40052db28efa827

Contents?: true

Size: 1.3 KB

Versions: 105

Compression:

Stored size: 1.3 KB

Contents

/*:nodoc:*
 * class ActionStoreConstant
 *
 * This action stores the value specified by the const keyword argument.
 * (Note that the const keyword argument defaults to the rather unhelpful null.)
 * The 'store_const' action is most commonly used with optional
 * arguments that specify some sort of flag.
 *
 * This class inherited from [[Action]]
 **/
'use strict';

var util = require('util');

var Action = require('../../action');

/*:nodoc:*
 * new ActionStoreConstant(options)
 * - options (object): options hash see [[Action.new]]
 *
 **/
var ActionStoreConstant = module.exports = function ActionStoreConstant(options) {
  options = options || {};
  options.nargs = 0;
  if (typeof options.constant === 'undefined') {
    throw new Error('constant option is required for storeAction');
  }
  Action.call(this, options);
};
util.inherits(ActionStoreConstant, Action);

/*:nodoc:*
 * ActionStoreConstant#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
 **/
ActionStoreConstant.prototype.call = function (parser, namespace) {
  namespace.set(this.dest, this.constant);
};

Version data entries

105 entries across 104 versions & 18 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/argparse/lib/action/store/constant.js
disco_app-0.18.0 test/dummy/node_modules/argparse/lib/action/store/constant.js
disco_app-0.18.2 test/dummy/node_modules/argparse/lib/action/store/constant.js
appmap-0.72.2 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.72.1 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.72.0 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.71.0 ./node_modules/argparse/lib/action/store/constant.js
disco_app-0.16.1 test/dummy/node_modules/argparse/lib/action/store/constant.js
appmap-0.70.2 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.70.1 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.70.0 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.69.0 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.68.2 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.68.1 ./node_modules/argparse/lib/action/store/constant.js
disco_app-0.15.2 test/dummy/node_modules/argparse/lib/action/store/constant.js
appmap-0.68.0 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.67.1 ./node_modules/argparse/lib/action/store/constant.js
appmap-0.67.0 ./node_modules/argparse/lib/action/store/constant.js
disco_app-0.18.4 test/dummy/node_modules/argparse/lib/action/store/constant.js
disco_app-0.18.1 test/dummy/node_modules/argparse/lib/action/store/constant.js