php-parser/comment/doc_comment.go
2018-01-08 21:50:39 +02:00

16 lines
199 B
Go

package comment
type DocComment struct {
value string
}
func NewDocComment(value string) *DocComment {
return &DocComment{
value,
}
}
func (c *DocComment) String() string {
return c.value
}