-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken.go
53 lines (45 loc) · 984 Bytes
/
token.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main
type TokenType int
const (
TokenUnkown TokenType = iota
OpenBracket
ClosedBracket
FnBlock
Function
Variable
NewLine
)
type Token struct {
Type TokenType
Name string
Value string
}
func Tokenize(input string) []Token {
var tokens []Token
for idx, ch := range input {
switch ch {
case '[':
tokens = append(tokens, Token{OpenBracket, "O_BRACKET", string(ch)})
case ']':
tokens = append(tokens, Token{ClosedBracket, "C_BRACKET", string(ch)})
case '-':
if idx < len(input)-1 {
nextChar := input[idx+1]
if nextChar == '>' {
tokens = append(tokens, Token{FnBlock, "FN_BLOCK", string("->")})
}
}
case '\n':
tokens = append(tokens, Token{NewLine, "NEW_LINE", string(ch)})
case '>':
continue
case '@':
tokens = append(tokens, Token{Variable, "VARIABLE", string(ch)})
default:
// log.Fatalf("Invalid token: %s", string(ch))
// just ignore other characters for now
continue
}
}
return tokens
}