DEADSOFTWARE

Исправлен экспорт полей и экспорт для "только чтения"
[dsw-obn.git] / test.c
diff --git a/test.c b/test.c
index 432307f51ba6e983b25400f43e593e2e8e555fdf..541b3a57f55dae71a8936e0c696f6ad506084340 100644 (file)
--- a/test.c
+++ b/test.c
@@ -1,44 +1,67 @@
 #include "oberon.h"
 #include "generator.h"
+
+#include <string.h>
 #include <assert.h>
 
-static const char source[] =
+static char source_test[] =
        "MODULE Test;"
-       "TYPE"
-       "       Int = INTEGER;"
-       "       PArray2D = POINTER TO Array2D;"
-       "       Array2D = ARRAY 3 OF ARRAY 3 OF INTEGER;"
-       "       PAP2D = ARRAY 4 OF POINTER TO ARRAY 5 OF INTEGER;"
-       "       Object = POINTER TO ObjectDesc;"
-       "       ObjectDesc = RECORD"
-       "               value : Array2D;"
-       "               value2 : PArray2D;"
-       "               doStuff : Proc;"
-       "               next : Object;"
-       "       END;"
-       "       Proc = PROCEDURE(self : Object; i : Int);"
+       "IMPORT I := Imported;"
        "VAR"
-       "       i : Int;"
-       "       a2 : Array2D;"
-       "       p2 : PArray2D;"
-       "       po : Object;"
-       "       do : ObjectDesc;"
-       "       stuffProc : Proc;"
-       "       pap2 : PAP2D;"
-       "       "
+       "  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"
+       "       Rider* = RECORD i*, j-, k : INTEGER; END;"
+       "VAR"
+       "       i- : INTEGER;"
+       "       a* : ARRAY 3 OF INTEGER;"
+       ""
+       "PROCEDURE Ln*;"
+       "END Ln;"
+       ""
+       "BEGIN;"
+       "       i := 1;"
+       "       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;