X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Foberon-internals.h;h=d6c3881d2d54e2cb67f554371479a2c0386153fe;hb=351f950548241d4c4bd799acabbcd98a39b096cc;hp=e265a79cc1b39aff1e2a6afa7d3b51913853c756;hpb=9e6d0f74f74926a9c73d15418c2e9668689061f2;p=dsw-obn.git diff --git a/src/oberon-internals.h b/src/oberon-internals.h index e265a79..d6c3881 100644 --- a/src/oberon-internals.h +++ b/src/oberon-internals.h @@ -1,6 +1,7 @@ #ifndef OBERON_INTERNALS_H #define OBERON_INTERNALS_H +typedef struct gen_module_t gen_module_t; typedef struct gen_proc_t gen_proc_t; typedef struct gen_type_t gen_type_t; typedef struct gen_var_t gen_var_t; @@ -23,8 +24,9 @@ struct oberon_scope_t oberon_object_t * list; oberon_scope_t * up; - oberon_object_t * parent; int local; + oberon_object_t * parent; + oberon_type_t * parent_type; }; enum @@ -82,6 +84,7 @@ struct oberon_object_t int initialized; oberon_object_t * parent; + oberon_type_t * parent_type; oberon_scope_t * scope; // for proc int has_return; // for proc @@ -107,6 +110,8 @@ struct oberon_module_t oberon_scope_t * decl; oberon_module_t * next; + + gen_module_t * gen_mod; }; typedef const char * (*ModuleImportCallback)(const char * name); @@ -168,7 +173,7 @@ enum OP_MOD, OP_BITWISE_AND, OP_BITWISE_XOR, - OP_BITWISE_OP, + OP_BITWISE_OR, OP_LOGIC_AND, OP_LOGIC_OR,