File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -433,10 +433,7 @@ impl ASTBuilder {
433433 . copied ( )
434434 . unwrap_or ( NodeType :: Unknown ) ;
435435
436- // Debug output for C language
437- if self . language == Language :: C && ( kind. contains ( "function" ) || kind. contains ( "declaration" ) ) {
438- eprintln ! ( "DEBUG: C node mapping: '{}' -> {:?}" , kind, node_type) ;
439- }
436+
440437
441438 node_type
442439 }
Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ impl SemanticAnalyzer {
9797 match node. node_type {
9898 NodeType :: Function | NodeType :: Method | NodeType :: Constructor => {
9999 if let Some ( name) = node. metadata . attributes . get ( "name" ) {
100- eprintln ! ( "DEBUG: Found function: {}" , name) ;
101100
102101 let symbol = Symbol {
103102 name : name. clone ( ) ,
You can’t perform that action at this time.
0 commit comments