You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			15 lines
		
	
	
		
			573 B
		
	
	
	
		
			JavaScript
		
	
		
		
			
		
	
	
			15 lines
		
	
	
		
			573 B
		
	
	
	
		
			JavaScript
		
	
| 
											9 months ago
										 | 'use strict'; | ||
|  | module.exports = function generate_comment(it, $keyword, $ruleType) { | ||
|  |   var out = ' '; | ||
|  |   var $schema = it.schema[$keyword]; | ||
|  |   var $errSchemaPath = it.errSchemaPath + '/' + $keyword; | ||
|  |   var $breakOnError = !it.opts.allErrors; | ||
|  |   var $comment = it.util.toQuotedString($schema); | ||
|  |   if (it.opts.$comment === true) { | ||
|  |     out += ' console.log(' + ($comment) + ');'; | ||
|  |   } else if (typeof it.opts.$comment == 'function') { | ||
|  |     out += ' self._opts.$comment(' + ($comment) + ', ' + (it.util.toQuotedString($errSchemaPath)) + ', validate.root.schema);'; | ||
|  |   } | ||
|  |   return out; | ||
|  | } |