2018-04-15 11:47:40 +00:00
|
|
|
package scanner
|
2017-12-03 18:49:18 +00:00
|
|
|
|
2018-01-05 15:03:59 +00:00
|
|
|
import (
|
|
|
|
"github.com/z7zmey/php-parser/comment"
|
2018-04-15 19:56:20 +00:00
|
|
|
"github.com/z7zmey/php-parser/position"
|
2018-01-05 15:03:59 +00:00
|
|
|
)
|
|
|
|
|
2018-01-11 18:49:00 +00:00
|
|
|
// Token value returned by lexer
|
2017-12-03 18:49:18 +00:00
|
|
|
type Token struct {
|
2018-04-15 19:56:20 +00:00
|
|
|
Value string
|
2018-06-10 23:41:12 +00:00
|
|
|
Position *position.Position
|
|
|
|
Comments []*comment.Comment
|
2017-12-03 18:49:18 +00:00
|
|
|
}
|
|
|
|
|
2018-04-15 19:56:20 +00:00
|
|
|
func (t *Token) String() string {
|
2017-12-03 18:49:18 +00:00
|
|
|
return string(t.Value)
|
|
|
|
}
|