Global Script compiler that solely typechecks the input
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
| #include <u.h>
#include <libc.h>
#include <stdatomic.h>
#include <libglobalscript.h>
void
p9main(int argc, char **argv)
{
gsmain(argc, argv);
}
void
gsadd_client_prim_sets()
{
}
void
gscheck_global_gslib(struct gspos pos, struct gsfile_symtable *symtable)
{
}
void
gscheck_program(char *doc, struct gsfile_symtable *symtable, struct gspos pos, struct gstype *ty)
{
}
int
gs_client_pre_ace_gc_trace_roots(struct gsstringbuilder *err)
{
return 0;
}
void
gsrun(char *doc, struct gspos pos, gsvalue prog, int argc, char **argv)
{
ace_down();
}
|