gulp-jsdoc
Version:
A jsdoc plugin for Gulp
1,929 lines (1,928 loc) • 22.6 MB
JSON
[
{
"comment": "/**\n * Creates a `lodash` object which wraps the given value to enable intuitive\n * method chaining.\n *\n * In addition to Lo-Dash methods, wrappers also have the following `Array` methods:\n * `concat`, `join`, `pop`, `push`, `reverse`, `shift`, `slice`, `sort`, `splice`,\n * and `unshift`\n *\n * Chaining is supported in custom builds as long as the `value` method is\n * implicitly or explicitly included in the build.\n *\n * The chainable wrapper functions are:\n * `after`, `assign`, `at`, `bind`, `bindAll`, `bindKey`, `chain`, `compact`,\n * `compose`, `concat`, `constant`, `countBy`, `create`, `createCallback`,\n * `curry`, `debounce`, `defaults`, `defer`, `delay`, `difference`, `filter`,\n * `flatten`, `forEach`, `forEachRight`, `forIn`, `forInRight`, `forOwn`,\n * `forOwnRight`, `functions`, `groupBy`, `indexBy`, `initial`, `intersection`,\n * `invert`, `invoke`, `keys`, `map`, `mapValues`, `matches`, `max`, `memoize`,\n * `merge`, `min`, `noop`, `object`, `omit`, `once`, `pairs`, `partial`,\n * `partialRight`, `pick`, `pluck`, `property`, `pull`, `push`, `range`,\n * `reject`, `remove`, `rest`, `reverse`, `shuffle`, `slice`, `sort`, `sortBy`,\n * `splice`, `tap`, `throttle`, `times`, `toArray`, `transform`, `union`,\n * `uniq`, `unshift`, `unzip`, `values`, `where`, `without`, `wrap`, `xor`,\n * and `zip`\n *\n * The non-chainable wrapper functions are:\n * `capitalize`, `clone`, `cloneDeep`, `contains`, `escape`, `every`, `find`,\n * `findIndex`, `findKey`, `findLast`, `findLastIndex`, `findLastKey`, `has`,\n * `identity`, `indexOf`, `isArguments`, `isArray`, `isBoolean`, `isDate`,\n * `isElement`, `isEmpty`, `isEqual`, `isFinite`, `isFunction`, `isNaN`,\n * `isNull`, `isNumber`, `isObject`, `isPlainObject`, `isRegExp`, `isString`,\n * `isUndefined`, `join`, `lastIndexOf`, `mixin`, `noConflict`, `now`,\n * `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, `result`, `shift`,\n * `size`, `some`, `sortedIndex`, `runInContext`, `template`, `trim`,\n * `trimLeft`, `trimRight`, `unescape`, `uniqueId`, and `value`\n *\n * The wrapper functions `first`, `last`, and `sample` return wrapped values\n * when `n` is provided, otherwise they return unwrapped values.\n *\n * Explicit chaining can be enabled by using the `_.chain` method.\n *\n * @name _\n * @constructor\n * @category Chaining\n * @param {*} value The value to wrap in a `lodash` instance.\n * @returns {Object} Returns a `lodash` instance.\n * @example\n *\n * var wrapped = _([1, 2, 3]);\n *\n * // returns an unwrapped value\n * wrapped.reduce(function(sum, num) {\n * return sum + num;\n * });\n * // => 6\n *\n * // returns a wrapped value\n * var squares = wrapped.map(function(num) {\n * return num * num;\n * });\n *\n * _.isArray(squares);\n * // => false\n *\n * _.isArray(squares.value());\n * // => true\n */",
"meta": {
"range": [
23112,
26142
],
"filename": "lodash.js",
"lineno": 688,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {}
},
"description": "Creates a `lodash` object which wraps the given value to enable intuitive\nmethod chaining.\n\nIn addition to Lo-Dash methods, wrappers also have the following `Array` methods:\n`concat`, `join`, `pop`, `push`, `reverse`, `shift`, `slice`, `sort`, `splice`,\nand `unshift`\n\nChaining is supported in custom builds as long as the `value` method is\nimplicitly or explicitly included in the build.\n\nThe chainable wrapper functions are:\n`after`, `assign`, `at`, `bind`, `bindAll`, `bindKey`, `chain`, `compact`,\n`compose`, `concat`, `constant`, `countBy`, `create`, `createCallback`,\n`curry`, `debounce`, `defaults`, `defer`, `delay`, `difference`, `filter`,\n`flatten`, `forEach`, `forEachRight`, `forIn`, `forInRight`, `forOwn`,\n`forOwnRight`, `functions`, `groupBy`, `indexBy`, `initial`, `intersection`,\n`invert`, `invoke`, `keys`, `map`, `mapValues`, `matches`, `max`, `memoize`,\n`merge`, `min`, `noop`, `object`, `omit`, `once`, `pairs`, `partial`,\n`partialRight`, `pick`, `pluck`, `property`, `pull`, `push`, `range`,\n`reject`, `remove`, `rest`, `reverse`, `shuffle`, `slice`, `sort`, `sortBy`,\n`splice`, `tap`, `throttle`, `times`, `toArray`, `transform`, `union`,\n`uniq`, `unshift`, `unzip`, `values`, `where`, `without`, `wrap`, `xor`,\nand `zip`\n\nThe non-chainable wrapper functions are:\n`capitalize`, `clone`, `cloneDeep`, `contains`, `escape`, `every`, `find`,\n`findIndex`, `findKey`, `findLast`, `findLastIndex`, `findLastKey`, `has`,\n`identity`, `indexOf`, `isArguments`, `isArray`, `isBoolean`, `isDate`,\n`isElement`, `isEmpty`, `isEqual`, `isFinite`, `isFunction`, `isNaN`,\n`isNull`, `isNumber`, `isObject`, `isPlainObject`, `isRegExp`, `isString`,\n`isUndefined`, `join`, `lastIndexOf`, `mixin`, `noConflict`, `now`,\n`parseInt`, `pop`, `random`, `reduce`, `reduceRight`, `result`, `shift`,\n`size`, `some`, `sortedIndex`, `runInContext`, `template`, `trim`,\n`trimLeft`, `trimRight`, `unescape`, `uniqueId`, and `value`\n\nThe wrapper functions `first`, `last`, and `sample` return wrapped values\nwhen `n` is provided, otherwise they return unwrapped values.\n\nExplicit chaining can be enabled by using the `_.chain` method.",
"name": "_",
"kind": "class",
"tags": [
{
"originalTitle": "category",
"title": "category",
"text": "Chaining",
"value": "Chaining"
}
],
"params": [
{
"type": {
"names": [
"*"
]
},
"description": "The value to wrap in a `lodash` instance.",
"name": "value"
}
],
"returns": [
{
"type": {
"names": [
"Object"
]
},
"description": "Returns a `lodash` instance."
}
],
"examples": [
"var wrapped = _([1, 2, 3]);\n\n// returns an unwrapped value\nwrapped.reduce(function(sum, num) {\n return sum + num;\n});\n// => 6\n\n// returns a wrapped value\nvar squares = wrapped.map(function(num) {\n return num * num;\n});\n\n_.isArray(squares);\n// => false\n\n_.isArray(squares.value());\n// => true"
],
"longname": "_"
},
{
"comment": "/**\n * Enables explicit method chaining on the wrapper object.\n *\n * @name chain\n * @memberOf _\n * @category Chaining\n * @returns {*} Returns the wrapper object.\n * @example\n *\n * var characters = [\n * { 'name': 'barney', 'age': 36 },\n * { 'name': 'fred', 'age': 40 }\n * ];\n *\n * // without explicit chaining\n * _(characters).first();\n * // => { 'name': 'barney', 'age': 36 }\n *\n * // with explicit chaining\n * _(characters).chain()\n * .first()\n * .pick('age')\n * .value();\n * // => { 'age': 36 }\n */",
"meta": {
"range": [
117868,
118476
],
"filename": "lodash.js",
"lineno": 3543,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {}
},
"description": "Enables explicit method chaining on the wrapper object.",
"name": "chain",
"memberof": "_",
"tags": [
{
"originalTitle": "category",
"title": "category",
"text": "Chaining",
"value": "Chaining"
}
],
"returns": [
{
"type": {
"names": [
"*"
]
},
"description": "Returns the wrapper object."
}
],
"examples": [
"var characters = [\n { 'name': 'barney', 'age': 36 },\n { 'name': 'fred', 'age': 40 }\n];\n\n// without explicit chaining\n_(characters).first();\n// => { 'name': 'barney', 'age': 36 }\n\n// with explicit chaining\n_(characters).chain()\n .first()\n .pick('age')\n .value();\n// => { 'age': 36 }"
],
"scope": "static",
"longname": "_.chain",
"kind": "member"
},
{
"comment": "/**\n * Produces the `toString` result of the wrapped value.\n *\n * @name toString\n * @memberOf _\n * @category Chaining\n * @returns {string} Returns the string result.\n * @example\n *\n * _([1, 2, 3]).toString();\n * // => '1,2,3'\n */",
"meta": {
"range": [
118566,
118839
],
"filename": "lodash.js",
"lineno": 3573,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {}
},
"description": "Produces the `toString` result of the wrapped value.",
"name": "toString",
"memberof": "_",
"tags": [
{
"originalTitle": "category",
"title": "category",
"text": "Chaining",
"value": "Chaining"
}
],
"returns": [
{
"type": {
"names": [
"string"
]
},
"description": "Returns the string result."
}
],
"examples": [
"_([1, 2, 3]).toString();\n// => '1,2,3'"
],
"scope": "static",
"longname": "_.toString",
"kind": "member"
},
{
"comment": "/**\n * Extracts the wrapped value.\n *\n * @name valueOf\n * @memberOf _\n * @alias value\n * @category Chaining\n * @returns {*} Returns the wrapped value.\n * @example\n *\n * _([1, 2, 3]).valueOf();\n * // => [1, 2, 3]\n */",
"meta": {
"range": [
118923,
119186
],
"filename": "lodash.js",
"lineno": 3589,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {}
},
"description": "Extracts the wrapped value.",
"name": "valueOf",
"memberof": "_",
"alias": "value",
"tags": [
{
"originalTitle": "category",
"title": "category",
"text": "Chaining",
"value": "Chaining"
}
],
"returns": [
{
"type": {
"names": [
"*"
]
},
"description": "Returns the wrapped value."
}
],
"examples": [
"_([1, 2, 3]).valueOf();\n// => [1, 2, 3]"
],
"scope": "static",
"longname": "_.valueOf",
"kind": "member"
},
{
"comment": "",
"meta": {
"range": [
443,
452
],
"filename": "lodash.js",
"lineno": 12,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015343",
"name": "undefined",
"node": {
"type": "Identifier",
"name": "undefined",
"range": [
443,
452
],
"loc": {
"start": {
"line": 12,
"column": 6
},
"end": {
"line": 12,
"column": 15
}
}
}
}
},
"undocumented": true,
"name": "undefined",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~undefined",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
516,
529
],
"filename": "lodash.js",
"lineno": 15,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015346",
"name": "BIND_FLAG",
"type": "Literal",
"node": {
"type": "Literal",
"value": 1,
"raw": "1",
"range": [
528,
529
],
"loc": {
"start": {
"line": 15,
"column": 18
},
"end": {
"line": 15,
"column": 19
}
}
},
"value": "1"
}
},
"undocumented": true,
"name": "BIND_FLAG",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~BIND_FLAG",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
537,
554
],
"filename": "lodash.js",
"lineno": 16,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015349",
"name": "BIND_KEY_FLAG",
"type": "Literal",
"node": {
"type": "Literal",
"value": 2,
"raw": "2",
"range": [
553,
554
],
"loc": {
"start": {
"line": 16,
"column": 22
},
"end": {
"line": 16,
"column": 23
}
}
},
"value": "2"
}
},
"undocumented": true,
"name": "BIND_KEY_FLAG",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~BIND_KEY_FLAG",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
562,
576
],
"filename": "lodash.js",
"lineno": 17,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015352",
"name": "CURRY_FLAG",
"type": "Literal",
"node": {
"type": "Literal",
"value": 4,
"raw": "4",
"range": [
575,
576
],
"loc": {
"start": {
"line": 17,
"column": 19
},
"end": {
"line": 17,
"column": 20
}
}
},
"value": "4"
}
},
"undocumented": true,
"name": "CURRY_FLAG",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~CURRY_FLAG",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
584,
604
],
"filename": "lodash.js",
"lineno": 18,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015355",
"name": "CURRY_BOUND_FLAG",
"type": "Literal",
"node": {
"type": "Literal",
"value": 8,
"raw": "8",
"range": [
603,
604
],
"loc": {
"start": {
"line": 18,
"column": 25
},
"end": {
"line": 18,
"column": 26
}
}
},
"value": "8"
}
},
"undocumented": true,
"name": "CURRY_BOUND_FLAG",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~CURRY_BOUND_FLAG",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
612,
629
],
"filename": "lodash.js",
"lineno": 19,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015358",
"name": "PARTIAL_FLAG",
"type": "Literal",
"node": {
"type": "Literal",
"value": 16,
"raw": "16",
"range": [
627,
629
],
"loc": {
"start": {
"line": 19,
"column": 21
},
"end": {
"line": 19,
"column": 23
}
}
},
"value": "16"
}
},
"undocumented": true,
"name": "PARTIAL_FLAG",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~PARTIAL_FLAG",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
637,
660
],
"filename": "lodash.js",
"lineno": 20,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015361",
"name": "PARTIAL_RIGHT_FLAG",
"type": "Literal",
"node": {
"type": "Literal",
"value": 32,
"raw": "32",
"range": [
658,
660
],
"loc": {
"start": {
"line": 20,
"column": 27
},
"end": {
"line": 20,
"column": 29
}
}
},
"value": "32"
}
},
"undocumented": true,
"name": "PARTIAL_RIGHT_FLAG",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~PARTIAL_RIGHT_FLAG",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
714,
731
],
"filename": "lodash.js",
"lineno": 23,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015365",
"name": "version",
"type": "Literal",
"node": {
"type": "Literal",
"value": "2.4.1",
"raw": "'2.4.1'",
"range": [
724,
731
],
"loc": {
"start": {
"line": 23,
"column": 16
},
"end": {
"line": 23,
"column": 23
}
}
},
"value": "2.4.1"
}
},
"undocumented": true,
"name": "version",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~version",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
796,
834
],
"filename": "lodash.js",
"lineno": 26,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015369",
"name": "expando",
"type": "BinaryExpression",
"node": {
"type": "BinaryExpression",
"operator": "+",
"left": {
"type": "BinaryExpression",
"operator": "+",
"left": {
"type": "Literal",
"value": "__lodash@",
"raw": "'__lodash@'",
"range": [
806,
817
],
"loc": {
"start": {
"line": 26,
"column": 16
},
"end": {
"line": 26,
"column": 27
}
}
},
"right": {
"type": "Identifier",
"name": "version",
"range": [
820,
827
],
"loc": {
"start": {
"line": 26,
"column": 30
},
"end": {
"line": 26,
"column": 37
}
}
},
"range": [
806,
827
],
"loc": {
"start": {
"line": 26,
"column": 16
},
"end": {
"line": 26,
"column": 37
}
}
},
"right": {
"type": "Literal",
"value": "__",
"raw": "'__'",
"range": [
830,
834
],
"loc": {
"start": {
"line": 26,
"column": 40
},
"end": {
"line": 26,
"column": 44
}
}
},
"range": [
806,
834
],
"loc": {
"start": {
"line": 26,
"column": 16
},
"end": {
"line": 26,
"column": 44
}
}
}
}
},
"undocumented": true,
"name": "expando",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~expando",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
880,
893
],
"filename": "lodash.js",
"lineno": 29,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015377",
"name": "idCounter",
"type": "Literal",
"node": {
"type": "Literal",
"value": 0,
"raw": "0",
"range": [
892,
893
],
"loc": {
"start": {
"line": 29,
"column": 18
},
"end": {
"line": 29,
"column": 19
}
}
},
"value": "0"
}
},
"undocumented": true,
"name": "idCounter",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~idCounter",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
975,
1014
],
"filename": "lodash.js",
"lineno": 32,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015381",
"name": "reEmptyStringLeading",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/\\b__p \\+= '';/g",
"range": [
998,
1014
],
"loc": {
"start": {
"line": 32,
"column": 29
},
"end": {
"line": 32,
"column": 45
}
}
},
"value": "/\\b__p \\+= '';/g"
}
},
"undocumented": true,
"name": "reEmptyStringLeading",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reEmptyStringLeading",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1022,
1064
],
"filename": "lodash.js",
"lineno": 33,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015384",
"name": "reEmptyStringMiddle",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/\\b(__p \\+=) '' \\+/g",
"range": [
1044,
1064
],
"loc": {
"start": {
"line": 33,
"column": 28
},
"end": {
"line": 33,
"column": 48
}
}
},
"value": "/\\b(__p \\+=) '' \\+/g"
}
},
"undocumented": true,
"name": "reEmptyStringMiddle",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reEmptyStringMiddle",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1072,
1127
],
"filename": "lodash.js",
"lineno": 34,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015387",
"name": "reEmptyStringTrailing",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/(__e\\(.*?\\)|\\b__t\\)) \\+\\n'';/g",
"range": [
1096,
1127
],
"loc": {
"start": {
"line": 34,
"column": 30
},
"end": {
"line": 34,
"column": 61
}
}
},
"value": "/(__e\\(.*?\\)|\\b__t\\)) \\+\\n'';/g"
}
},
"undocumented": true,
"name": "reEmptyStringTrailing",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reEmptyStringTrailing",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1193,
1236
],
"filename": "lodash.js",
"lineno": 37,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015391",
"name": "reEscapedHtml",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/&(?:amp|lt|gt|quot|#39);/g",
"range": [
1209,
1236
],
"loc": {
"start": {
"line": 37,
"column": 22
},
"end": {
"line": 37,
"column": 49
}
}
},
"value": "/&(?:amp|lt|gt|quot|#39);/g"
}
},
"undocumented": true,
"name": "reEscapedHtml",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reEscapedHtml",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1244,
1272
],
"filename": "lodash.js",
"lineno": 38,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015394",
"name": "reUnescapedHtml",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/[&<>\"']/g",
"range": [
1262,
1272
],
"loc": {
"start": {
"line": 38,
"column": 24
},
"end": {
"line": 38,
"column": 34
}
}
},
"value": "/[&<>\"']/g"
}
},
"undocumented": true,
"name": "reUnescapedHtml",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reUnescapedHtml",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1324,
1353
],
"filename": "lodash.js",
"lineno": 41,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015398",
"name": "reEscape",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/<%-([\\s\\S]+?)%>/g",
"range": [
1335,
1353
],
"loc": {
"start": {
"line": 41,
"column": 17
},
"end": {
"line": 41,
"column": 35
}
}
},
"value": "/<%-([\\s\\S]+?)%>/g"
}
},
"undocumented": true,
"name": "reEscape",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reEscape",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1361,
1391
],
"filename": "lodash.js",
"lineno": 42,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015401",
"name": "reEvaluate",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/<%([\\s\\S]+?)%>/g",
"range": [
1374,
1391
],
"loc": {
"start": {
"line": 42,
"column": 19
},
"end": {
"line": 42,
"column": 36
}
}
},
"value": "/<%([\\s\\S]+?)%>/g"
}
},
"undocumented": true,
"name": "reEvaluate",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reEvaluate",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1399,
1433
],
"filename": "lodash.js",
"lineno": 43,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015404",
"name": "reInterpolate",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/<%=([\\s\\S]+?)%>/g",
"range": [
1415,
1433
],
"loc": {
"start": {
"line": 43,
"column": 22
},
"end": {
"line": 43,
"column": 40
}
}
},
"value": "/<%=([\\s\\S]+?)%>/g"
}
},
"undocumented": true,
"name": "reInterpolate",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reInterpolate",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1584,
1632
],
"filename": "lodash.js",
"lineno": 49,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015408",
"name": "reEsTemplate",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/\\$\\{([^\\\\}]*(?:\\\\.[^\\\\}]*)*)\\}/g",
"range": [
1599,
1632
],
"loc": {
"start": {
"line": 49,
"column": 21
},
"end": {
"line": 49,
"column": 54
}
}
},
"value": "/\\$\\{([^\\\\}]*(?:\\\\.[^\\\\}]*)*)\\}/g"
}
},
"undocumented": true,
"name": "reEsTemplate",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reEsTemplate",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1710,
1726
],
"filename": "lodash.js",
"lineno": 52,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015412",
"name": "reFlags",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/\\w*$/",
"range": [
1720,
1726
],
"loc": {
"start": {
"line": 52,
"column": 16
},
"end": {
"line": 52,
"column": 22
}
}
},
"value": "/\\w*$/"
}
},
"undocumented": true,
"name": "reFlags",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reFlags",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1777,
1816
],
"filename": "lodash.js",
"lineno": 55,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015416",
"name": "reFuncName",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/^\\s*function[ \\n\\r\\t]+\\w/",
"range": [
1790,
1816
],
"loc": {
"start": {
"line": 55,
"column": 19
},
"end": {
"line": 55,
"column": 45
}
}
},
"value": "/^\\s*function[ \\n\\r\\t]+\\w/"
}
},
"undocumented": true,
"name": "reFuncName",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reFuncName",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1875,
1897
],
"filename": "lodash.js",
"lineno": 58,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015420",
"name": "reHexPrefix",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/^0[xX]/",
"range": [
1889,
1897
],
"loc": {
"start": {
"line": 58,
"column": 20
},
"end": {
"line": 58,
"column": 28
}
}
},
"value": "/^0[xX]/"
}
},
"undocumented": true,
"name": "reHexPrefix",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reHexPrefix",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
1956,
1981
],
"filename": "lodash.js",
"lineno": 61,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015424",
"name": "reLatin1",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/[\\xC0-\\xFF]/g",
"range": [
1967,
1981
],
"loc": {
"start": {
"line": 61,
"column": 17
},
"end": {
"line": 61,
"column": 31
}
}
},
"value": "/[\\xC0-\\xFF]/g"
}
},
"undocumented": true,
"name": "reLatin1",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reLatin1",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
2053,
2071
],
"filename": "lodash.js",
"lineno": 64,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015428",
"name": "reNoMatch",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/($^)/",
"range": [
2065,
2071
],
"loc": {
"start": {
"line": 64,
"column": 18
},
"end": {
"line": 64,
"column": 24
}
}
},
"value": "/($^)/"
}
},
"undocumented": true,
"name": "reNoMatch",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reNoMatch",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
2267,
2304
],
"filename": "lodash.js",
"lineno": 71,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015432",
"name": "reRegExpChars",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/[.*+?^${}()|[\\]\\\\]/g",
"range": [
2283,
2304
],
"loc": {
"start": {
"line": 71,
"column": 22
},
"end": {
"line": 71,
"column": 43
}
}
},
"value": "/[.*+?^${}()|[\\]\\\\]/g"
}
},
"undocumented": true,
"name": "reRegExpChars",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reRegExpChars",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
2377,
2396
],
"filename": "lodash.js",
"lineno": 74,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015436",
"name": "reThis",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/\\bthis\\b/",
"range": [
2386,
2396
],
"loc": {
"start": {
"line": 74,
"column": 15
},
"end": {
"line": 74,
"column": 25
}
}
},
"value": "/\\bthis\\b/"
}
},
"undocumented": true,
"name": "reThis",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reThis",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
2477,
2523
],
"filename": "lodash.js",
"lineno": 77,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015440",
"name": "reUnescapedString",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/['\\n\\r\\t\\u2028\\u2029\\\\]/g",
"range": [
2497,
2523
],
"loc": {
"start": {
"line": 77,
"column": 26
},
"end": {
"line": 77,
"column": 52
}
}
},
"value": "/['\\n\\r\\t\\u2028\\u2029\\\\]/g"
}
},
"undocumented": true,
"name": "reUnescapedString",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reUnescapedString",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
2586,
2619
],
"filename": "lodash.js",
"lineno": 80,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015444",
"name": "reWords",
"type": "Literal",
"node": {
"type": "Literal",
"value": {},
"raw": "/[a-zA-Z0-9][a-z0-9]*/g",
"range": [
2596,
2619
],
"loc": {
"start": {
"line": 80,
"column": 16
},
"end": {
"line": 80,
"column": 39
}
}
},
"value": "/[a-zA-Z0-9][a-z0-9]*/g"
}
},
"undocumented": true,
"name": "reWords",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~reWords",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
2672,
2936
],
"filename": "lodash.js",
"lineno": 83,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015448",
"name": "whitespace",
"type": "BinaryExpression",
"node": {
"type": "BinaryExpression",
"operator": "+",
"left": {
"type": "BinaryExpression",
"operator": "+",
"left": {
"type": "Literal",
"value": " \t\u000b\f ",
"raw": "' \\t\\x0B\\f\\xA0\\ufeff'",
"range": [
2709,
2730
],
"loc": {
"start": {
"line": 85,
"column": 4
},
"end": {
"line": 85,
"column": 25
}
}
},
"right": {
"type": "Literal",
"value": "\n\r
",
"raw": "'\\n\\r\\u2028\\u2029'",
"range": [
2762,
2780
],
"loc": {
"start": {
"line": 88,
"column": 4
},
"end": {
"line": 88,
"column": 22
}
}
},
"range": [
2709,
2780
],
"loc": {
"start": {
"line": 85,
"column": 4
},
"end": {
"line": 88,
"column": 22
}
}
},
"right": {
"type": "Literal",
"value": " ",
"raw": "'\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000'",
"range": [
2834,
2932
],
"loc": {
"start": {
"line": 91,
"column": 4
},
"end": {
"line": 91,
"column": 102
}
}
},
"range": [
2709,
2932
],
"loc": {
"start": {
"line": 85,
"column": 4
},
"end": {
"line": 91,
"column": 102
}
}
}
}
},
"undocumented": true,
"name": "whitespace",
"kind": "member",
"memberof": "<anonymous>",
"longname": "<anonymous>~whitespace",
"scope": "inner"
},
{
"comment": "",
"meta": {
"range": [
3005,
3257
],
"filename": "lodash.js",
"lineno": 95,
"path": "/Users/dmp/dev/jsboot/gulp-jsdoc/test/fixtures",
"code": {
"id": "astnode100015456",
"name": "contextProps",
"type": "ArrayExpression",
"node": {
"type": "ArrayExpression",
"elements": [
{
"type": "Literal",
"value": "Array",
"raw": "'Array'",
"range": [
3026,
3033
],
"loc": {
"start": {
"line": 96,
"column": 4
},
"end": {
"line": 96,
"column": 11
}
}
},
{
"type": "Literal",
"value": "Boolean",
"raw": "'Boolean'",
"range": [
3035,
3044
],
"loc": {
"start": {
"line": 96,
"column": 13
},
"end": {
"line": 96,
"column": 22
}
}
},
{
"type": "Literal",
"value": "Date",
"raw": "'Date'",
"range": [
3046,
3052
],
"loc": {
"start": {
"line": 96,
"column": 24
},
"end": {
"line": 96,
"column": 30
}
}
},
{
"type": "Literal",
"value": "Error",
"raw": "'Error'",
"range": [
3054,
3061
],
"loc": {
"start": {
"line": 96,
"column": 32
},
"end": {
"line": 96,
"column": 39
}
}
},
{
"type": "Literal",
"value": "Function",
"raw": "'Function'",
"range": [
3063,
3073
],
"loc": {
"start": {
"line": 96,
"column": 41
},
"end": {
"line": 96,
"column": 51
}
}
},
{
"type": "Literal",
"value": "Math",
"raw": "'Math'",
"range": [
3075,
3081
],
"loc": {
"start": {
"line": 96,
"column": 53
},
"end": {
"line": 96,
"column": 59
}
}
},
{
"type": "Literal",
"value": "Number",
"raw": "'Number'",
"range": [
3083,
3091
],
"loc": {
"start": {
"line": 96,
"column": 61
},
"end": {
"line": 96,
"column": 69
}
}
},
{
"type": "Literal",
"value": "Object",
"raw": "'Object'",
"range": [
3093,
3101
],
"loc": {
"start": {
"line": 96,
"column": 71
},
"end": {
"line": 96,
"column": 79
}
}
},
{
"type": "Literal",
"value": "RegExp",
"raw": "'RegExp'",
"range": [
3107,
3115
],
"loc": {
"start": {
"line": 97,
"column": 4
},
"end": {
"line": 97,
"column": 12
}
}
},
{
"type": "Literal",
"value": "Set",
"raw": "'Set'",
"range": [
3117,
3122
],
"loc": {
"start": {
"line": 97,
"column": 14
},
"end": {
"line": 97,
"column": 19
}
}
},
{
"type": "Literal",
"value": "String",
"raw": "'String'",
"range": [
3124,
3132
],
"loc": {
"start": {
"line": 97,
"column": 21
},
"end": {
"line": 97,
"column": 29
}
}
},
{
"type": "Literal",
"value": "_",
"raw": "'_'",
"range": [
3134,
3137
],
"loc": {
"start": {
"line": 97,
"column": 31
},
"end": {
"line": 97,
"column": 34
}
}
},
{
"type": "Literal",
"value": "clearTimeout",
"raw": "'clearTimeout'",
"range": [
3139,
3153
],
"loc": {
"start": {
"line": 97,
"column": 36
},
"end": {
"line": 97,
"column": 50
}
}
},
{
"type": "Literal",
"value": "document",
"raw": "'document'",
"range": [
3155,
3165
],
"loc": {
"start": {
"line": 97,
"column": 52
},
"end": {
"line": 97,
"column": 62
}
}
},
{
"type": "Literal",
"value": "isFinite",
"raw": "'isFinite'",
"range": [
3167,
3177
],
"loc": {
"start": {
"line": 97,
"column": 64
},
"end": {
"line": 97,
"column": 74
}
}
},
{
"type": "Literal",
"value": "isNaN",
"raw": "'isNaN'",
"range": [
3179,
3186
],
"loc": {
"start": {
"line": 97,
"column": 76
},
"end": {
"line": 97,
"column": 83
}
}
},
{
"type": "Literal",
"value": "parseInt",
"raw": "'parseInt'",
"range": [
3192,
3202
],
"loc": {
"start": {
"line": 98,
"column": 4
},
"end": {
"line": 98,
"column": 14
}
}
},
{
"type": "Literal",
"value": "setTimeout",
"raw": "'setTimeout'",
"range": [
3204,
3216
],
"loc": {
"start": {
"line": 98,
"column": 16
},
"end": {
"line": 98,
"column": 28
}
}
},
{
"type": "Literal",
"value": "TypeError",
"raw": "'TypeError'",
"range": [
3218,
3229
],
"loc": {