@rightcapital/phpdoc-parser
Version:
TypeScript version of PHPDoc parser with support for intersection types and generics
18 lines (17 loc) • 554 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeprecatedTagValueNode = void 0;
const php_doc_tag_value_node_1 = require("./php-doc-tag-value-node");
class DeprecatedTagValueNode extends php_doc_tag_value_node_1.PhpDocTagValueNode {
constructor(description) {
super();
this.description = description;
}
toString() {
return this.description.trim();
}
getNodeType() {
return 'DeprecatedTagValueNode';
}
}
exports.DeprecatedTagValueNode = DeprecatedTagValueNode;