parser: rename it back to Pos()

This commit is contained in:
Fatih Arslan 2015-10-09 12:36:40 +03:00
parent 8e99146570
commit 77c7bc18c5

View File

@ -18,7 +18,7 @@ const (
type Node interface { type Node interface {
String() string String() string
Type() NodeType Type() NodeType
Start() scanner.Pos Pos() scanner.Pos
End() scanner.Pos End() scanner.Pos
} }