token interface
This commit is contained in:
parent
514630174f
commit
3584676e43
@ -1,5 +1,11 @@
|
|||||||
package token
|
package token
|
||||||
|
|
||||||
|
type TokenInterface interface {
|
||||||
|
GetValue() string
|
||||||
|
GetStartLine() int
|
||||||
|
GetEndLine() int
|
||||||
|
}
|
||||||
|
|
||||||
type Token struct {
|
type Token struct {
|
||||||
Value string
|
Value string
|
||||||
StartLine int
|
StartLine int
|
||||||
@ -13,3 +19,13 @@ func NewToken(value []byte, startLine int, endLine int) Token {
|
|||||||
func (t Token) String() string {
|
func (t Token) String() string {
|
||||||
return string(t.Value)
|
return string(t.Value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t Token) GetValue() string {
|
||||||
|
return t.Value
|
||||||
|
}
|
||||||
|
func (t Token) GetStartLine() int {
|
||||||
|
return t.StartLine
|
||||||
|
}
|
||||||
|
func (t Token) GetEndLine() int {
|
||||||
|
return t.EndLine
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user