Home
last modified time | relevance | path

Searched refs:checkRule (Results 1 – 1 of 1) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/doxy/node/
Dxml2js.js499 function checkRule(rule, errMsg) { function
506 checkRule(_.has(methodSpec, 'description'), 'no description given');
507 checkRule(_.has(methodSpec, 'params'), 'no params given (specify "params": {} for no params)');
509 checkRule(_.has(paramSpec, 'type'), 'no type given for param ' + paramName);
510 checkRule(_.has(paramSpec, 'description'), 'no description given for param ' + paramName);
512checkRule(_.has(methodSpec, 'return'), 'no return given (specify "return": {} for no return value)…
513 checkRule(_.has(methodSpec.return, 'type'), 'no type given for return value');
514 checkRule(_.has(methodSpec.return, 'description'), 'no description given for return value');