X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=symbol.h;h=79c54327301d366ed33c2871229201b7b0e52188;hb=3486fabdf20fb345ac0b0098071c0cfc56005568;hp=11efafb6186aea3b6a4861ceb51ddb6161ee12f7;hpb=97f33b63c421063c4cbc869c60076b9132667835;p=cparser diff --git a/symbol.h b/symbol.h index 11efafb..79c5432 100644 --- a/symbol.h +++ b/symbol.h @@ -1,15 +1,16 @@ #ifndef SYMBOL_H #define SYMBOL_H -#include "parser.h" +#include "ast.h" typedef struct symbol_t symbol_t; struct symbol_t { - const char *string; - unsigned short ID; - unsigned short pp_ID; - environment_entry_t *thing; + const char *string; + unsigned short ID; + unsigned short pp_ID; + declaration_t *declaration; + const void *context; }; #endif