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.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/lang/scanner/token/loc.go b/pkg/lang/scanner/token/loc.go
new file mode 100644
index 0000000..c4b073a
--- /dev/null
+++ b/pkg/lang/scanner/token/loc.go
@@ -0,0 +1,6 @@
+package token
+
+type Loc struct {
+	Row int
+	Col int
+}