mirror of
https://github.com/safedep/vet.git
synced 2025-12-10 00:22:08 -06:00
feat: Building code graph Refactor to support import processing Handle relative import name fixup Add docs for code analysis framework Update docs to include additional examples feat: Function call graph Update code graph to link function decl and calls Include call node in function calls feat: Flatten vulnerabilities in CSV reporter refactor: Maintain separation of concerns for code analysis framework refactor: Separate storage entities in its own package feat: Add callback support in code graph builder docs: Fix code analysis framework docs Signed-off-by: abhisek <abhisek.datta@gmail.com>
7 lines
253 B
Go
7 lines
253 B
Go
package nodes
|
|
|
|
// The nodes package represent the concept of in-memory
|
|
// CST / AST nodes, ideally as language agnostic as possible.
|
|
// These are essentially wrappers over Tree Sitter nodes with
|
|
// some helpful methods to extract information from them.
|