aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ast-inspect.c
AgeCommit message (Collapse)AuthorFilesLines
2019-11-03remove unused SYM_TYPEDEFLuc Van Oostenryck1-1/+0
SYM_TYPEDEF is not used anymore since the SYM -> MOD conversion. So, remove it. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
2019-11-03remove unused SYM_MEMBERLuc Van Oostenryck1-1/+0
SYM_MEMBER has never been set. Remove since it's unused. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
2011-08-12inspect: Add switch statement and moreChristopher Li1-4/+17
Signed-off-by: Christopher Li <sparse@chrisli.org>
2010-11-08inspect: adding function arugument listChristopher Li1-0/+1
Signed-off-by: Christopher Li <sparse@chrisli.org>
2010-07-22inspect: cast expressionChristopher Li1-1/+19
Adding cast expression for AST inspecting. Signed-off-by: Christopher Li <sparse@chrisli.org>
2010-07-13inspect: add some expression inspectionChristopher1-1/+77
Signed-Off-By: Christopher Li <sparse@chrisli.org>
2010-07-13inspect: add some example inspect for symbol and statementChristopher Li1-0/+114
This is far fro complete. It is an example how to write call back driven inspect functions. Inside each inspect call back function. It can add a child node with: ast_append_child(), or add text attribute node with ast_append_attribute() Signed-Off-By: Christopher Li <sparse@chrisli.org>