diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-24 12:40:19 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-24 12:40:19 -0600 |
commit | 53c5a841d7131cc119c6bafdf5387d732eb98c02 (patch) | |
tree | da5542f49abb4b3004aec86e4931dcf61d183e24 /include/chillAST/chillAST_def.hh | |
parent | 47ba6bf1100fe1da8d80607053d88cfd2abe25ff (diff) | |
download | chill-53c5a841d7131cc119c6bafdf5387d732eb98c02.tar.gz chill-53c5a841d7131cc119c6bafdf5387d732eb98c02.tar.bz2 chill-53c5a841d7131cc119c6bafdf5387d732eb98c02.zip |
Added variable & typedef scoping
Diffstat (limited to 'include/chillAST/chillAST_def.hh')
-rw-r--r-- | include/chillAST/chillAST_def.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/chillAST/chillAST_def.hh b/include/chillAST/chillAST_def.hh index 7d729d6..59a7f95 100644 --- a/include/chillAST/chillAST_def.hh +++ b/include/chillAST/chillAST_def.hh @@ -180,6 +180,7 @@ typedef std::vector<chillAST_TypedefDecl *> chillAST_TypedefTable; chillAST_VarDecl *symbolTableFindName(chillAST_SymbolTable *table, const char *name); chillAST_VarDecl *symbolTableFindVariableNamed(chillAST_SymbolTable *table, const char *name); +chillAST_TypedefDecl *typedefTableFindName(chillAST_TypedefTable *table, const char *name); void printSymbolTable(chillAST_SymbolTable *st); void printSymbolTableMoreInfo(chillAST_SymbolTable *st); |