-
Notifications
You must be signed in to change notification settings - Fork 0
/
sources.cm
executable file
·78 lines (52 loc) · 1.18 KB
/
sources.cm
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
Group
signature SET
structure Set
signature TEMP
structure Temp
signature ML_AST
structure MLAst
signature CPS
structure Cps
signature CPS_CONVERT
structure CpsConvert
signature CLOSURE
structure Closure
signature CLOSURE_CONVERT
structure ClosureConvert
signature FLAT
structure Flat
signature HOIST
structure Hoist
signature MACHINE
structure Machine
signature CODEGEN
structure Codegen
structure Test
structure Main
is
set.sig
set.sml
temp.sig
temp.sml
ml-ast.sig
ml-ast.sml
cps.sig
cps.sml
cps-convert.sig
cps-convert.sml
closure.sig
closure.sml
closure-convert.sig
closure-convert.sml
flat.sig
flat.sml
hoist.sig
hoist.sml
machine.sig
machine.sml
codegen.sig
codegen.sml
test.sml
main.sml
$/basis.cm
(*to compile an ast, run: Main.main (Test.fac, "fac");*)