remove tokenInterface

This commit is contained in:
z7zmey 2018-01-11 20:30:34 +02:00
parent e97b018b72
commit 3392ce2f1c

View File

@ -4,14 +4,6 @@ import (
"github.com/z7zmey/php-parser/comment"
)
type TokenInterface interface {
GetValue() string
GetStartLine() int
GetEndLine() int
Comments() []comment.Comment
SetComments(comments []comment.Comment) Token
}
type Token struct {
Value string
StartLine int