-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlexer.go
123 lines (110 loc) · 1.63 KB
/
lexer.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package main
import (
"bufio"
"io"
"log"
"unicode"
)
type Token int
const (
EOF = iota
ILLEGAL
IDENT
INT
// Infix ops
ADD // +
SUB // -
MUL // *
DIV // /
MOD // %
)
var tokens = []string{
EOF: "EOF",
ILLEGAL: "ILLEGAL",
IDENT: "IDENT",
INT: "INT",
ADD: "+",
SUB: "-",
MUL: "*",
DIV: "/",
MOD: "%",
}
type Position struct {
line int
column int
}
type Lexer struct {
pos Position
reader *bufio.Reader
}
func (l *Lexer) Lex() (Token, string) {
for {
r, _, err := l.reader.ReadRune()
if err != nil {
if err == io.EOF {
return EOF, ""
}
log.Fatal(err)
}
l.pos.column++
switch r {
case '\n':
l.resetPosition()
case '+':
return ADD, "+"
case '-':
return SUB, "-"
case '*':
return MUL, "*"
case '/':
return DIV, "/"
case '%':
return MOD, "%"
default:
if unicode.IsSpace(r) {
continue
} else if unicode.IsDigit(r) {
l.backup()
lit := l.lexInt()
return INT, lit
} else {
return ILLEGAL, string(r)
}
}
}
}
func (l *Lexer) resetPosition() {
l.pos.line++
l.pos.column = 0
}
func (l *Lexer) backup() {
if err := l.reader.UnreadRune(); err != nil {
log.Fatal(err)
}
l.pos.column--
}
func (l *Lexer) lexInt() string {
var lit string
for {
r, _, err := l.reader.ReadRune()
if err != nil {
if err == io.EOF {
return lit
}
log.Fatal(err)
}
l.pos.column++
if unicode.IsDigit(r) {
lit = lit + string(r)
} else {
l.backup()
return lit
}
}
}
func NewLexer(reader *bufio.Reader) *Lexer {
return &Lexer{
pos: Position{line: 1, column: 0},
reader: bufio.NewReader(reader),
}
}