blob: ebe44cb98d76e8f22e9c34399eeb4f32037198ad (
plain)
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
|
int NT_MODULE = 0
int NT_BLOCK = 1
int NT_FUNC = 2
int NT_PARAM = 3
int NT_RESULT = 4
int NT_DATA = 5
int NT_TYPE = 6
int NT_STRUCT = 7
struct Node {
int _type,
~uint8 data,
utils.Vector sub
}
/; method Node
/; init (int typ, ~uint8 dat)
self._type = typ
self.data = dat
Node sub
self.sub.init(len sub)
;/
/; end
_delete(self.data)
~Node n
/; loop (int i = 0; i < self.sub.count) [i++]
n = self.sub.get(i)
n`.end()
;/
self.sub.end()
;/
;/
/; build_struct (utils.Iterator it)
;/
/; build_module ()
;/
/; build_block (utils.Iterator it)
;/
/; build_preproc (utils.Iterator it)
;/
/; build_vardef (utils.Iterator it)
;/
/; at_defn (utils.Iterator it) [bool]
return false
;/
~uint8 TOKEN_COUNT = "Token count: %d\n\0"
/; build_file (~utils.File fin, ~Node mod)
utils.Vector tokens = tokenize(fin)
_print_num(TOKEN_COUNT, tokens.count)
utils.Iterator tokit
tokit.init(~tokens)
/; loop (tokit.at_end() == false)
~Token t = tokit.get()
/; if (utils.strcmp(t`.data, "/;\0") == true)
_printf("Block detected!\n\0")
build_block(tokit)
;; else if (utils.strcmp(t`.data, "struct\0") == true)
_printf("Struct detected!\n\0")
build_struct(tokit)
;; else if (utils.strcmp(t`.data, ":\0") == true)
_printf("Preproc detected!\n\0")
build_preproc(tokit)
;; else if (at_defn(tokit) == true)
_printf("Defn detected!\n\0")
build_vardef(tokit)
;; else
# _printf("Error detected!\n\0")
# TODO: ERROR
;/
tokit.next()
;/
;/
|