about summary refs log tree commit diff
path: root/pkg/lang/scanner/token/loc.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/lang/scanner/token/loc.go')
-rw-r--r--pkg/lang/scanner/token/loc.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/pkg/lang/scanner/token/loc.go b/pkg/lang/scanner/token/loc.go
deleted file mode 100644
index 7936cba..0000000
--- a/pkg/lang/scanner/token/loc.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package token
-
-type Loc struct {
-	Row int
-	Col int
-}
-
-func NewLoc(row, col int) Loc {
-	return Loc{row, col}
-}