mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 08:52:55 +00:00

Update ESLint to v3.8.0. * Installed with `npm install --production` to avoid installing unnecessary dev files * Used `dmn -f clean` to further eliminate unneeded files PR-URL: https://github.com/nodejs/node/pull/9112 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
'use strict';
|
|
module.exports = function generate_allOf(it, $keyword) {
|
|
var out = ' ';
|
|
var $schema = it.schema[$keyword];
|
|
var $schemaPath = it.schemaPath + '.' + $keyword;
|
|
var $errSchemaPath = it.errSchemaPath + '/' + $keyword;
|
|
var $breakOnError = !it.opts.allErrors;
|
|
var $it = it.util.copy(it);
|
|
var $closingBraces = '';
|
|
$it.level++;
|
|
var $currentBaseId = $it.baseId;
|
|
var arr1 = $schema;
|
|
if (arr1) {
|
|
var $sch, $i = -1,
|
|
l1 = arr1.length - 1;
|
|
while ($i < l1) {
|
|
$sch = arr1[$i += 1];
|
|
if (it.util.schemaHasRules($sch, it.RULES.all)) {
|
|
$it.schema = $sch;
|
|
$it.schemaPath = $schemaPath + '[' + $i + ']';
|
|
$it.errSchemaPath = $errSchemaPath + '/' + $i;
|
|
out += ' ' + (it.validate($it)) + ' ';
|
|
$it.baseId = $currentBaseId;
|
|
if ($breakOnError) {
|
|
out += ' if (valid' + ($it.level) + ') { ';
|
|
$closingBraces += '}';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if ($breakOnError) {
|
|
out += ' ' + ($closingBraces.slice(0, -1));
|
|
}
|
|
out = it.util.cleanUpCode(out);
|
|
return out;
|
|
}
|