Module extractor

Module extractor 

Source
Expand description

AST extraction for C source code

This module provides two parsing modes:

  • Strict mode: Fails on syntax errors (default, for clean code)
  • Tolerant mode: Extracts what it can even with errors (for real-world code)

Structs§

ExtractionOptions
Extraction options for controlling parser behavior
ExtractionResult
Result of extraction with additional metadata

Functions§

extract
Extract code entities and relationships from C source code (strict mode)
extract_with_options
Extract with custom options (supports tolerant mode)