20 lines
374 B
Go
20 lines
374 B
Go
|
package position
|
||
|
|
||
|
// Position represents node position
|
||
|
type Position struct {
|
||
|
StartLine int
|
||
|
EndLine int
|
||
|
StartPos int
|
||
|
EndPos int
|
||
|
}
|
||
|
|
||
|
// NewPosition Position constructor
|
||
|
func NewPosition(StartLine int, EndLine int, StartPos int, EndPos int) *Position {
|
||
|
return &Position{
|
||
|
StartLine: StartLine,
|
||
|
EndLine: EndLine,
|
||
|
StartPos: StartPos,
|
||
|
EndPos: EndPos,
|
||
|
}
|
||
|
}
|