1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "div.h"
#include "gl.h"
#include "im.h"
#include "lk.h"
#include "pr.h"
#include "td.h"
#include "ws.h"
const struct seq divseq[] =
{
{(const struct step[]){{ID, "storage"}, {0}}, .fn = ws},
{(const struct step[]){{ID, "linkage"}, {0}}, .fn = lk},
{(const struct step[]){{ID, "globals"}, {0}}, .fn = gl},
{(const struct step[]){{ID, "procedure"}, {0}}, .fn = pr},
{(const struct step[]){{ID, "types"}, {0}}, .fn = td},
{(const struct step[]){{ID, "import"}, {LIT}, {0}}, .fn = im},
{0}
};
|