-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_test.go
128 lines (109 loc) · 2.48 KB
/
example_test.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
124
125
126
127
128
package simplexer_test
import (
"fmt"
"strings"
"github.com/macrat/simplexer"
)
func Example() {
input := "hello_world = \"hello world\"\nnumber = 1"
lexer := simplexer.NewLexer(strings.NewReader(input))
fmt.Println(input)
fmt.Println("==========")
for {
token, err := lexer.Scan()
if err != nil {
panic(err.Error())
}
if token == nil {
fmt.Println("==========")
return
}
fmt.Printf("line %2d, column %2d: %s: %s\n",
token.Position.Line,
token.Position.Column,
token.Type,
token.Literal)
}
// Output:
// hello_world = "hello world"
// number = 1
// ==========
// line 0, column 0: IDENT: hello_world
// line 0, column 12: OTHER: =
// line 0, column 14: STRING: "hello world"
// line 1, column 0: IDENT: number
// line 1, column 7: OTHER: =
// line 1, column 9: NUMBER: 1
// ==========
}
func Example_positionInformation() {
input := "this is a\ntest string\n"
lexer := simplexer.NewLexer(strings.NewReader(input))
for {
token, err := lexer.Scan()
if err != nil {
panic(err.Error())
}
if token == nil {
break
}
fmt.Printf("%d: %s\n", token.Position.Line, lexer.GetLastLine())
fmt.Printf(" | %s%s\n\n",
strings.Repeat(" ", token.Position.Column),
strings.Repeat("=", len(token.Literal)))
}
// Output:
// 0: this is a
// | ====
//
// 0: this is a
// | ==
//
// 0: this is a
// | =
//
// 1: test string
// | ====
//
// 1: test string
// | ======
}
func Example_addOriginalTokenType() {
const (
SUBSITUATION simplexer.TokenID = iota
NEWLINE
)
input := "hello_world = \"hello world\"\nnumber = 1"
lexer := simplexer.NewLexer(strings.NewReader(input))
lexer.Whitespace = simplexer.NewPatternTokenType(-1, []string{"\t", " "})
// lexer.Whitespace = simplexer.NewRegexpTokenType(-1, `[\t ]`) // same mean above
lexer.TokenTypes = append([]simplexer.TokenType{
simplexer.NewPatternTokenType(SUBSITUATION, []string{"="}),
simplexer.NewRegexpTokenType(NEWLINE, `^[\n\r]+`),
}, lexer.TokenTypes...)
fmt.Println(input)
fmt.Println("==========")
for {
token, err := lexer.Scan()
if err != nil {
panic(err.Error())
}
if token == nil {
fmt.Println("==========")
return
}
fmt.Printf("%s: %#v\n", token.Type, token.Literal)
}
// Output:
// hello_world = "hello world"
// number = 1
// ==========
// IDENT: "hello_world"
// UNKNOWN(0): "="
// STRING: "\"hello world\""
// UNKNOWN(1): "\n"
// IDENT: "number"
// UNKNOWN(0): "="
// NUMBER: "1"
// ==========
}