documentation/test/fixture/simple-two.output.json
2015-03-30 11:20:10 -04:00

42 lines
851 B
JSON

[
{
"description": "This function returns the number plus two.",
"tags": [
{
"title": "param",
"description": "the number",
"type": {
"type": "NameExpression",
"name": "Number"
},
"name": "a"
},
{
"title": "returns",
"description": "numbertwo",
"type": {
"type": "NameExpression",
"name": "Number"
}
},
{
"title": "name",
"name": "returnTwo"
}
],
"context": {
"loc": {
"start": {
"line": 7,
"column": 0
},
"end": {
"line": 10,
"column": 1
}
},
"file": "fixture/simple-two.input.js",
"code": "function returnTwo(a) {\n // this returns a + 2\n return a + 2;\n}"
}
}
]