From 3392ce2f1ccd6a9f3654361629cd8a8c7858693a Mon Sep 17 00:00:00 2001 From: z7zmey Date: Thu, 11 Jan 2018 20:30:34 +0200 Subject: [PATCH] remove tokenInterface --- token/token.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/token/token.go b/token/token.go index 3f6ef9a..146cb14 100644 --- a/token/token.go +++ b/token/token.go @@ -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