UNPKG

@rightcapital/phpdoc-parser

Version:

TypeScript version of PHPDoc parser with support for intersection types and generics

18 lines (17 loc) 482 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ConstExprStringNode = void 0; const const_expr_node_1 = require("./const-expr-node"); class ConstExprStringNode extends const_expr_node_1.ConstExprNode { constructor(value) { super(); this.value = value; } toString() { return this.value; } getNodeType() { return 'ConstExprStringNode'; } } exports.ConstExprStringNode = ConstExprStringNode;