diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2026-05-09 02:56:07 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2026-05-17 11:13:23 +0200 |
| commit | 527c23b73c8dae16f02cca6f450edb7d8225f60f (patch) | |
| tree | 6b2bfd9e8d814026d6d2c1839d8cfe1bcadc825c /div.c | |
| download | slcob-master.tar.gz | |
Diffstat (limited to 'div.c')
| -rw-r--r-- | div.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,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} +}; |
