cdocparser
Advanced tools
Comparing version 0.3.7 to 0.3.8
@@ -199,4 +199,6 @@ 'use strict'; | ||
// Merge in posterComment annotations and overwrite each annotation of item if it was not set | ||
// do it only if the annotation is allowed on the parsedComment.context.type | ||
Object.keys(posterComment).forEach(function(key){ | ||
if (parsedComment[key] === undefined){ | ||
if (parsedComment[key] === undefined && | ||
isAnnotationAllowed(parsedComment, annotations[key])){ | ||
parsedComment[key] = posterComment[key]; | ||
@@ -203,0 +205,0 @@ } |
{ | ||
"name": "cdocparser", | ||
"version": "0.3.7", | ||
"version": "0.3.8", | ||
"description": "Extract C style comments and extract context from source", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -120,2 +120,5 @@ CDocParser | ||
#### 0.3.8 | ||
* Add type check for poster comments | ||
@@ -122,0 +125,0 @@ #### 0.3.7 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20789
403
171