'use strict';
// Trivial file/Str parser.// Assumes that the whole string is leafdoc docstrings.// This is the old 'isSource=false' behaviour.functiontrivialParser(str) {
// Return an array with just one element, the whole string.return [str];
}
module.exports = trivialParser;