DocBlock & Annotations Parser

This library is a javascript LALR(1) parser that parses docblocks and extracts
annotations under an structured syntax tree.
Install
npm install doc-parser --save
And simple usage :
var DocParser = require('doc-parser');
var reader = new DocParser();
var data = reader.parse('/** @hello world */');
Supported syntaxes
AST structure
{
kind: 'doc',
summary: 'Some description retrieved from the first line of the coment',
body: [
{
kind: 'return',
type: 'void',
description: 'Some extra informations'
}
]
}
Misc
This library is released under BSD-3 license clause.