tooluniverse.tools.AdvancedCodeQualityAnalyzer module¶
AdvancedCodeQualityAnalyzer
Performs deep analysis of code quality including complexity, security, performance, and maintaina…
- tooluniverse.tools.AdvancedCodeQualityAnalyzer.AdvancedCodeQualityAnalyzer(source_code, language='python', analysis_depth='comprehensive', domain_context=None, *, stream_callback=None, use_cache=False, validate=True)[source]¶
Performs deep analysis of code quality including complexity, security, performance, and maintaina…
- Parameters:
source_code (
str
) – The source code to analyze for quality assessmentlanguage (
str
) – Programming language (python, javascript, etc.)analysis_depth (
str
) – Level of analysis depth to performdomain_context (
str
) – Domain context for specialized analysis (e.g., bioinformatics, web development)stream_callback (
Callable
, optional) – Callback for streaming output
- Return type:
Any