File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed
crates/semantic-analysis/src Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,6 @@ impl SemanticAnalyzer {
114114 }
115115 NodeType :: VariableDeclaration | NodeType :: FieldDeclaration => {
116116 if let Some ( name) = node. metadata . attributes . get ( "name" ) {
117- eprintln ! ( "DEBUG: Found variable: {}" , name) ;
118117
119118 let symbol = Symbol {
120119 name : name. clone ( ) ,
Original file line number Diff line number Diff line change @@ -261,10 +261,7 @@ impl ComprehensiveDependencyGraphBuilder {
261261 context : & mut FileAnalysisContext ,
262262 scope_path : Vec < String > ,
263263 ) -> Result < ( ) > {
264- // Debug output for C language
265- if context. language == Language :: C {
266- eprintln ! ( "DEBUG: Processing AST node: {:?}" , node. node_type) ;
267- }
264+
268265
269266 match node. node_type {
270267 NodeType :: Function | NodeType :: Method | NodeType :: Constructor => {
@@ -325,11 +322,7 @@ impl ComprehensiveDependencyGraphBuilder {
325322 node : & ASTNode ,
326323 scope_path : & [ String ] ,
327324 ) -> Result < Option < FunctionInfo > > {
328- // Debug output for C functions
329- if matches ! ( node. node_type, NodeType :: Function | NodeType :: Method | NodeType :: Constructor ) {
330- eprintln ! ( "DEBUG: Extracting function info from node: {:?}" , node. node_type) ;
331- eprintln ! ( "DEBUG: Node attributes: {:?}" , node. metadata. attributes) ;
332- }
325+
333326
334327 let name = node
335328 . metadata
You can’t perform that action at this time.
0 commit comments