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

16 lines
209 B
Go

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