summaryrefslogtreecommitdiff
path: root/lang/token.go
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2023-10-13 18:32:13 +0200
committerMarc Vertes <mvertes@free.fr>2023-10-13 18:32:13 +0200
commit36149e5828df1bb35e06905c65f007dd5869aaec (patch)
tree9dcd79d401f7c0dedb62ba33e459765831a10044 /lang/token.go
parent40a03025bc1883051c921e6619d751cddcaedeeb (diff)
parser: include absolute paths in symbols
Diffstat (limited to 'lang/token.go')
-rw-r--r--lang/token.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/lang/token.go b/lang/token.go
index 3a980a4..5347504 100644
--- a/lang/token.go
+++ b/lang/token.go
@@ -101,8 +101,6 @@ const (
CallX
Label
JumpFalse
- Enter // entering in function context
- Exit // exiting from function context
)
func (t TokenId) IsKeyword() bool { return t >= Break && t <= Var }