1package revision
2
3// token represents a entity extracted from string parsing
4type token int
5
6const (
7	eof token = iota
8
9	aslash
10	asterisk
11	at
12	caret
13	cbrace
14	colon
15	control
16	dot
17	emark
18	minus
19	number
20	obrace
21	obracket
22	qmark
23	slash
24	space
25	tilde
26	tokenError
27	word
28)
29