php-parser/comment/doc_comment.go
2018-01-03 00:12:28 +02:00

16 lines
195 B
Go

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