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
|
#include <stdio.h>
#include <lyn/ast.h>
struct ast *reverse_ast_list(struct ast *root)
{
struct ast *new_root = NULL;
while (root) {
struct ast *next = root->next;
root->next = new_root;
new_root = root;
root = next;
}
return new_root;
}
#define dump(depth, fmt, ...) \
do { \
printf("//%*s", 2 * depth, ""); \
printf(fmt,##__VA_ARGS__); \
} while (0)
void ast_dump(int depth, struct ast *ast)
{
switch (ast->kind) {
case LYN_ID: dump(depth, "%s\n", ast->s); return;
case LYN_STR: dump(depth, "\"%s\"\n", ast->s); return;
case LYN_INT: dump(depth, "%lld\n", ast->i); return;
case LYN_FLOAT: dump(depth, "%f\n", ast->d); return;
case LYN_CMD:
dump(depth, "CMD\n");
ast_dump_list(depth + 1, ast->args);
return;
case LYN_LIST:
dump(depth, "LIST\n");
ast_dump_list(depth + 1, ast->args);
return;
case LYN_APPLY:
dump(depth, "APPLY\n");
ast_dump_list(depth + 1, ast->args);
return;
}
}
void ast_dump_list(int depth, struct ast *ast)
{
while (ast) {
ast_dump(depth, ast);
ast = ast->next;
}
}
|