bonsai
bonsai copied to clipboard
Simplified interface for syntax trees and program models.
Added pyproject.toml. Version is now fetched from git tags. Fixed .gitignore Removed README.md, since it seems you have switched to rst.
It is very inconvenient that this tool assummes that the files are always in FS. Their content can be in a python variable without any writes to fs ...
First, and foremost, `CodeQuery` must provide support for other objects, besides references and function calls. It should also provide methods to look for functions, variables, classes, etc. Secondly, it could...
https://github.com/foonathan/cppast https://foonathan.net/2017/04/cppast/
Found a useful link: http://digitocero.com/en/blog/exporting-and-visualizing-gccs-abstract-syntax-tree-ast And a StackOverflow question: https://stackoverflow.com/questions/15800230/how-can-i-dump-an-abstract-syntax-tree-generated-by-gcc-into-a-dot-file
In `std::string` there is an overload of `operator>>` which extracts a string from an input stream and writes the value to the given variable. This is effectively a write operation...