X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=test.c;h=541b3a57f55dae71a8936e0c696f6ad506084340;hb=89dfaf94ddbbc501020554232ce026b6584e8045;hp=d828f4a2e855adbbd24d2852738453892614f634;hpb=d3438ae51da4c98b47441911495f10e686191abd;p=dsw-obn.git diff --git a/test.c b/test.c index d828f4a..541b3a5 100644 --- a/test.c +++ b/test.c @@ -1,37 +1,67 @@ #include "oberon.h" #include "generator.h" + +#include #include -static const char source[] = +static char source_test[] = "MODULE Test;" + "IMPORT I := Imported;" + "VAR" + " x, y : I.Rider;" + "PROCEDURE Proc(x, y, z : INTEGER);" + "BEGIN" + " x := 1;" + "END Proc;" + "BEGIN;" + " y.i := 1;" + " I.a[0] := 1;" + "END Test." +; + +static char source_imported[] = + "MODULE Imported;" "TYPE" - " Callback = PROCEDURE() : INTEGER;" - "" + " Rider* = RECORD i*, j-, k : INTEGER; END;" "VAR" - " cb : Callback;" - " i : INTEGER;" + " i- : INTEGER;" + " a* : ARRAY 3 OF INTEGER;" "" - "PROCEDURE RelBack;" - "BEGIN" - " i := 666;" - "END RelBack;" + "PROCEDURE Ln*;" + "END Ln;" "" "BEGIN;" " i := 1;" - " i := cb();" - " RelBack;" - "END Test." + " a[0] := 555;" + "END Imported." ; static oberon_context_t * ctx; static oberon_module_t * mod; +static const char * +import_module(const char * name) +{ + if(strcmp(name, "Test") == 0) + { + return source_test; + } + else if(strcmp(name, "Imported") == 0) + { + return source_imported; + } + else + { + return NULL; + } +} + int main(int argc, char ** argv) { - ctx = oberon_create_context(); - mod = oberon_compile_module(ctx, source); - //mod -> begin(); + ctx = oberon_create_context(import_module); + mod = oberon_compile_module(ctx, source_test); + oberon_generate_code(ctx); oberon_generator_dump(ctx, "dump.txt"); oberon_destroy_context(ctx); return 0;