Skip to content

Commit b6b7fc8

Browse files
committed
Check pt fixing warnings
1 parent 557be0d commit b6b7fc8

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

crates/semantic-analysis/src/analyzer.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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(),

crates/semantic-analysis/src/comprehensive_dependency_graph.rs

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)