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