(str)
| 6 | const Syntax = require('jsdoc/src/syntax').Syntax; |
| 7 | |
| 8 | function parse(str) { |
| 9 | return babelParser.parse(str, astBuilder.parserOptions).program.body[0]; |
| 10 | } |
| 11 | |
| 12 | // create the AST nodes we'll be testing |
| 13 | const arrayExpression = parse('[,]').expression; |
no test coverage detected
searching dependent graphs…