feat(notgraph): implement symbols extractor

This commit is contained in:
Joseph O'Brien
2026-04-02 02:27:45 -04:00
parent 2b46656d3e
commit b73db06f7b
3 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
pub struct Foo;
pub enum Bar { A, B }
pub trait Baz { fn run(&self); }
pub fn qux() {}
pub type Alias = u32;
pub const VALUE: u32 = 42;
struct Private;