mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-07 05:32:25 +00:00
- Change package name general_server to gateway - Changing the structure of directories and packages - Adding vendor to the project
30 lines
395 B
Go
30 lines
395 B
Go
package ast
|
|
|
|
type PositionHolder interface {
|
|
Line() int
|
|
SetLine(int)
|
|
LastLine() int
|
|
SetLastLine(int)
|
|
}
|
|
|
|
type Node struct {
|
|
line int
|
|
lastline int
|
|
}
|
|
|
|
func (self *Node) Line() int {
|
|
return self.line
|
|
}
|
|
|
|
func (self *Node) SetLine(line int) {
|
|
self.line = line
|
|
}
|
|
|
|
func (self *Node) LastLine() int {
|
|
return self.lastline
|
|
}
|
|
|
|
func (self *Node) SetLastLine(line int) {
|
|
self.lastline = line
|
|
}
|