Comparing version 3.3.1 to 3.3.2
@@ -6,2 +6,7 @@ # JSDoc 3 change history | ||
## 3.3.2 (June 2015) | ||
JSDoc no longer crashes when parsing a large number of files, or a single object that has a large number of properties. (#976) | ||
## 3.3.1 (June 2015) | ||
@@ -8,0 +13,0 @@ |
@@ -81,3 +81,3 @@ // TODO: docs | ||
if (debugEnabled && !node.parentId) { | ||
if (debugEnabled && typeof node.parentId === 'undefined') { | ||
newProperties.parentId = { | ||
@@ -91,3 +91,3 @@ enumerable: true, | ||
if (debugEnabled && !node.enclosingScopeId) { | ||
if (debugEnabled && typeof node.enclosingScopeId === 'undefined') { | ||
newProperties.enclosingScopeId = { | ||
@@ -94,0 +94,0 @@ enumerable: true, |
@@ -495,8 +495,3 @@ /** | ||
// for efficiency, if the node has a `parent` property, assume that we've already | ||
// added the required properties | ||
if (typeof node.parent !== 'undefined') { | ||
astnode.addNodeProperties(node); | ||
} | ||
astnode.addNodeProperties(node); | ||
node.parent = parent || null; | ||
@@ -503,0 +498,0 @@ |
{ | ||
"name": "jsdoc", | ||
"version": "3.3.1", | ||
"revision": "1426697054695", | ||
"version": "3.3.2", | ||
"revision": "1434234028109", | ||
"description": "An API documentation generator for JavaScript.", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
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
1488384
11541