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

16 lines
203 B
Go

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