diff options
| author | Mel <einebeere@gmail.com> | 2022-04-16 22:05:25 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2022-04-16 22:05:25 +0200 |
| commit | bbb2962bd4bac0ce1271ec7d7cb65d038ead8ed2 (patch) | |
| tree | 01cc597df41e9ed9b246f9d537783f68e126caab /pkg/lang/scanner/token/loc.go | |
| parent | 6163d259ed52991e2f95632b5a0516607aa56a5f (diff) | |
| download | jinx-bbb2962bd4bac0ce1271ec7d7cb65d038ead8ed2.tar.zst jinx-bbb2962bd4bac0ce1271ec7d7cb65d038ead8ed2.zip | |
Basic scanner for lang
Diffstat (limited to 'pkg/lang/scanner/token/loc.go')
| -rw-r--r-- | pkg/lang/scanner/token/loc.go | 6 |
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 +} |
