!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED	1	/0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR	Darren Hiebert	/dhiebert@users.sourceforge.net/
!_TAG_PROGRAM_NAME	Exuberant Ctags	//
!_TAG_PROGRAM_URL	http://ctags.sourceforge.net	/official site/
!_TAG_PROGRAM_VERSION	5.9~svn20110310	//
AsyncAnalysisReport	brain/tools/async_pattern_analyzer.py	/^class AsyncAnalysisReport:$/;"	c
AsyncFunctionInfo	brain/tools/async_pattern_analyzer.py	/^class AsyncFunctionInfo:$/;"	c
AsyncFunctionScanner	brain/tools/async_pattern_analyzer.py	/^class AsyncFunctionScanner(ast.NodeVisitor):$/;"	c
AsyncIssue	brain/tools/async_pattern_analyzer.py	/^class AsyncIssue:$/;"	c
AsyncPatternAnalyzer	brain/tools/async_pattern_analyzer.py	/^class AsyncPatternAnalyzer:$/;"	c
BLOCKING_IO	brain/tools/async_pattern_analyzer.py	/^    BLOCKING_IO = "blocking_io"$/;"	v	class:IssueType
BLOCKING_PATTERNS	brain/tools/async_pattern_analyzer.py	/^BLOCKING_PATTERNS = {$/;"	v
BlockingIODetector	brain/tools/async_pattern_analyzer.py	/^class BlockingIODetector(ast.NodeVisitor):$/;"	c
BrainValidator	brain/validate_brain.py	/^class BrainValidator:$/;"	c
CodebaseAnalyzer	brain/tools/ast_performance_analyzer.py	/^class CodebaseAnalyzer:$/;"	c
CodebaseMetrics	brain/tools/ast_performance_analyzer.py	/^class CodebaseMetrics:$/;"	c
Command	django_settings_enumerate/management/commands/enumerate_settings.py	/^class Command(BaseCommand):$/;"	c
ComplexityVisitor	brain/tools/ast_performance_analyzer.py	/^class ComplexityVisitor(ast.NodeVisitor):$/;"	c
ERROR	brain/tools/async_pattern_analyzer.py	/^    ERROR = "error"  # Likely runtime error$/;"	v	class:Severity
EXCLUDE_PATTERNS	brain/tools/ast_performance_analyzer.py	/^    EXCLUDE_PATTERNS = {$/;"	v	class:CodebaseAnalyzer
EXCLUDE_PATTERNS	brain/tools/async_pattern_analyzer.py	/^    EXCLUDE_PATTERNS = {$/;"	v	class:AsyncPatternAnalyzer
FileMetrics	brain/tools/ast_performance_analyzer.py	/^class FileMetrics:$/;"	c
FunctionMetrics	brain/tools/ast_performance_analyzer.py	/^class FunctionMetrics:$/;"	c
FunctionProfile	brain/tools/runtime_profiler.py	/^class FunctionProfile:$/;"	c
GatherAnalyzer	brain/tools/async_pattern_analyzer.py	/^class GatherAnalyzer(ast.NodeVisitor):$/;"	c
INFO	brain/tools/async_pattern_analyzer.py	/^    INFO = "info"  # Suggestion$/;"	v	class:Severity
IssueType	brain/tools/async_pattern_analyzer.py	/^class IssueType(Enum):$/;"	c
MISSING_AWAIT	brain/tools/async_pattern_analyzer.py	/^    MISSING_AWAIT = "missing_await"$/;"	v	class:IssueType
NESTED_GATHER	brain/tools/async_pattern_analyzer.py	/^    NESTED_GATHER = "nested_gather"$/;"	v	class:IssueType
OutputFormatter	brain/tools/ast_performance_analyzer.py	/^class OutputFormatter:$/;"	c
OutputFormatter	brain/tools/async_pattern_analyzer.py	/^class OutputFormatter:$/;"	c
PerformancePlugin	brain/tools/pytest_perf_plugin.py	/^class PerformancePlugin:$/;"	c
ProfileRegistry	brain/tools/runtime_profiler.py	/^class ProfileRegistry:$/;"	c
ProfileReporter	brain/tools/runtime_profiler.py	/^class ProfileReporter:$/;"	c
SENSITIVE_PATTERN	django_settings_enumerate/core.py	/^SENSITIVE_PATTERN = re.compile($/;"	v
SEQUENTIAL_AWAITS	brain/tools/async_pattern_analyzer.py	/^    SEQUENTIAL_AWAITS = "sequential_awaits"$/;"	v	class:IssueType
SINGLE_GATHER	brain/tools/async_pattern_analyzer.py	/^    SINGLE_GATHER = "single_gather"$/;"	v	class:IssueType
SequentialAwaitDetector	brain/tools/async_pattern_analyzer.py	/^class SequentialAwaitDetector(ast.NodeVisitor):$/;"	c
Severity	brain/tools/async_pattern_analyzer.py	/^class Severity(Enum):$/;"	c
TestCleanseSettings	tests/test_core.py	/^class TestCleanseSettings:$/;"	c
TestCleanseValue	tests/test_core.py	/^class TestCleanseValue:$/;"	c
TestDiffSettings	tests/test_core.py	/^class TestDiffSettings:$/;"	c
TestExtractSettings	tests/test_core.py	/^class TestExtractSettings:$/;"	c
TestFilterByPrefix	tests/test_core.py	/^class TestFilterByPrefix:$/;"	c
TestFlattenSettings	tests/test_core.py	/^class TestFlattenSettings:$/;"	c
TestFormatDiff	tests/test_core.py	/^class TestFormatDiff:$/;"	c
TestFormatJson	tests/test_core.py	/^class TestFormatJson:$/;"	c
TestFormatText	tests/test_core.py	/^class TestFormatText:$/;"	c
TestHashValue	tests/test_core.py	/^class TestHashValue:$/;"	c
TestIsSensitiveKey	tests/test_core.py	/^class TestIsSensitiveKey:$/;"	c
TestParseTextDump	tests/test_core.py	/^class TestParseTextDump:$/;"	c
ValidationError	brain/validate_brain.py	/^class ValidationError(Exception):$/;"	c
WARNING	brain/tools/async_pattern_analyzer.py	/^    WARNING = "warning"  # Performance issue$/;"	v	class:Severity
__init__	brain/tools/ast_performance_analyzer.py	/^    def __init__(self):$/;"	m	class:ComplexityVisitor
__init__	brain/tools/ast_performance_analyzer.py	/^    def __init__(self, root_path: Path, complexity_threshold: int = 15):$/;"	m	class:CodebaseAnalyzer
__init__	brain/tools/async_pattern_analyzer.py	/^    def __init__(self, file_path: str):$/;"	m	class:AsyncFunctionScanner
__init__	brain/tools/async_pattern_analyzer.py	/^    def __init__(self, file_path: str):$/;"	m	class:BlockingIODetector
__init__	brain/tools/async_pattern_analyzer.py	/^    def __init__(self, file_path: str):$/;"	m	class:GatherAnalyzer
__init__	brain/tools/async_pattern_analyzer.py	/^    def __init__(self, file_path: str):$/;"	m	class:SequentialAwaitDetector
__init__	brain/tools/async_pattern_analyzer.py	/^    def __init__(self, root_path: Path):$/;"	m	class:AsyncPatternAnalyzer
__init__	brain/tools/pytest_perf_plugin.py	/^    def __init__(self, slow_threshold: float = 1.0):$/;"	m	class:PerformancePlugin
__init__	brain/tools/runtime_profiler.py	/^    def __init__(self):$/;"	m	class:ProfileRegistry
__init__	brain/tools/runtime_profiler.py	/^    def __init__(self, registry: ProfileRegistry):$/;"	m	class:ProfileReporter
__init__	brain/validate_brain.py	/^    def __init__(self, brain_dir: Path = Path("brain")):$/;"	m	class:BrainValidator
_analyze_file	brain/tools/ast_performance_analyzer.py	/^    def _analyze_file(self, file_path: Path) -> Optional[FileMetrics]:$/;"	m	class:CodebaseAnalyzer
_analyze_file	brain/tools/async_pattern_analyzer.py	/^    def _analyze_file(self, file_path: Path):$/;"	m	class:AsyncPatternAnalyzer
_analyze_function	brain/tools/ast_performance_analyzer.py	/^    def _analyze_function(self, node, file_path: str) -> FunctionMetrics:$/;"	m	class:CodebaseAnalyzer
_analyze_gather	brain/tools/async_pattern_analyzer.py	/^    def _analyze_gather(self, node: ast.Call):$/;"	m	class:GatherAnalyzer
_calculate_summary	brain/tools/ast_performance_analyzer.py	/^    def _calculate_summary(self):$/;"	m	class:CodebaseAnalyzer
_calculate_summary	brain/tools/async_pattern_analyzer.py	/^    def _calculate_summary(self):$/;"	m	class:AsyncPatternAnalyzer
_enter_block	brain/tools/ast_performance_analyzer.py	/^    def _enter_block(self):$/;"	m	class:ComplexityVisitor
_exit_block	brain/tools/ast_performance_analyzer.py	/^    def _exit_block(self):$/;"	m	class:ComplexityVisitor
_find_python_files	brain/tools/ast_performance_analyzer.py	/^    def _find_python_files(self) -> List[Path]:$/;"	m	class:CodebaseAnalyzer
_find_python_files	brain/tools/async_pattern_analyzer.py	/^    def _find_python_files(self) -> List[Path]:$/;"	m	class:AsyncPatternAnalyzer
_find_sequential_awaits	brain/tools/async_pattern_analyzer.py	/^    def _find_sequential_awaits(self, body: List[ast.stmt]) -> List[Dict]:$/;"	m	class:SequentialAwaitDetector
_flatten	django_settings_enumerate/core.py	/^    def _flatten(prefix: str, value: Any) -> None:$/;"	f	function:flatten_settings
_format_bytes	brain/tools/runtime_profiler.py	/^    def _format_bytes(bytes_value: float) -> str:$/;"	m	class:ProfileReporter
_get_call_name	brain/tools/async_pattern_analyzer.py	/^    def _get_call_name(self, node: ast.Call) -> str:$/;"	m	class:BlockingIODetector
_hash_value	django_settings_enumerate/core.py	/^def _hash_value(value: Any) -> str:$/;"	f
_is_gather	brain/tools/async_pattern_analyzer.py	/^    def _is_gather(self, node: ast.Call) -> bool:$/;"	m	class:AsyncFunctionScanner
_is_gather_call	brain/tools/async_pattern_analyzer.py	/^    def _is_gather_call(self, node: ast.Call) -> bool:$/;"	m	class:GatherAnalyzer
_json_encode_leaf	django_settings_enumerate/core.py	/^def _json_encode_leaf(value: Any) -> str:$/;"	f
_plugin_instance	brain/tools/pytest_perf_plugin.py	/^_plugin_instance = None$/;"	v
_registry	brain/tools/runtime_profiler.py	/^_registry = ProfileRegistry()$/;"	v
action	brain/tools/ast_performance_analyzer.py	/^        action='store_true',$/;"	v
action	brain/tools/async_pattern_analyzer.py	/^        action='store_true',$/;"	v
action	brain/tools/runtime_profiler.py	/^        action='store_true',$/;"	v
add_arguments	django_settings_enumerate/management/commands/enumerate_settings.py	/^    def add_arguments(self, parser):$/;"	m	class:Command
analyze	brain/tools/ast_performance_analyzer.py	/^    def analyze(self) -> CodebaseMetrics:$/;"	m	class:CodebaseAnalyzer
analyze	brain/tools/async_pattern_analyzer.py	/^    def analyze(self) -> AsyncAnalysisReport:$/;"	m	class:AsyncPatternAnalyzer
analyzer	brain/tools/ast_performance_analyzer.py	/^    analyzer = CodebaseAnalyzer(args.path, args.threshold)$/;"	v
analyzer	brain/tools/async_pattern_analyzer.py	/^    analyzer = AsyncPatternAnalyzer(args.path)$/;"	v
args	brain/tools/ast_performance_analyzer.py	/^    args = parser.parse_args()$/;"	v
args	brain/tools/async_pattern_analyzer.py	/^    args = parser.parse_args()$/;"	v
args	brain/tools/runtime_profiler.py	/^    args = parser.parse_args()$/;"	v
async_wrapper	brain/tools/runtime_profiler.py	/^            async def async_wrapper(*args, **kwargs):$/;"	f	function:profile.decorator
avg_time	brain/tools/runtime_profiler.py	/^    def avg_time(self) -> float:$/;"	m	class:FunctionProfile
choices	brain/tools/ast_performance_analyzer.py	/^        choices=['markdown', 'json', 'both'],$/;"	v
choices	brain/tools/async_pattern_analyzer.py	/^        choices=['markdown', 'json', 'both'],$/;"	v
cleanse_settings	django_settings_enumerate/core.py	/^def cleanse_settings($/;"	f
cleanse_value	django_settings_enumerate/core.py	/^def cleanse_value(key: str, value: Any, *, show_sensitive: bool = False) -> Any:$/;"	f
clear	brain/tools/runtime_profiler.py	/^    def clear(self):$/;"	m	class:ProfileRegistry
decorator	brain/tools/runtime_profiler.py	/^    def decorator(func: Callable):$/;"	f	function:profile
default	brain/tools/ast_performance_analyzer.py	/^        default='markdown',$/;"	v
default	brain/tools/ast_performance_analyzer.py	/^        default=15,$/;"	v
default	brain/tools/async_pattern_analyzer.py	/^        default='markdown',$/;"	v
diff_settings	django_settings_enumerate/core.py	/^def diff_settings($/;"	f
discover_pattern_files	brain/update_index.py	/^def discover_pattern_files():$/;"	f
discover_support_files	brain/update_index.py	/^def discover_support_files():$/;"	f
error	brain/validate_brain.py	/^    def error(self, msg: str):$/;"	m	class:BrainValidator
extract_settings	django_settings_enumerate/core.py	/^def extract_settings(settings_obj: object) -> dict[str, Any]:$/;"	f
filter_by_prefix	django_settings_enumerate/core.py	/^def filter_by_prefix($/;"	f
flatten_settings	django_settings_enumerate/core.py	/^def flatten_settings(settings_dict: dict[str, Any]) -> dict[str, Any]:$/;"	f
format_diff	django_settings_enumerate/core.py	/^def format_diff(diff: dict[str, Any]) -> str:$/;"	f
format_json	django_settings_enumerate/core.py	/^def format_json(settings_dict: dict[str, Any]) -> str:$/;"	f
format_text	django_settings_enumerate/core.py	/^def format_text(settings_dict: dict[str, Any]) -> str:$/;"	f
generate_index	brain/update_index.py	/^def generate_index(patterns, support_files, meta, intent_map):$/;"	f
get_hotspots	brain/tools/runtime_profiler.py	/^    def get_hotspots(self, min_time: float = 0.1) -> List[FunctionProfile]:$/;"	m	class:ProfileRegistry
get_profiles	brain/tools/runtime_profiler.py	/^    def get_profiles(self) -> List[FunctionProfile]:$/;"	m	class:ProfileRegistry
get_registry	brain/tools/runtime_profiler.py	/^def get_registry() -> ProfileRegistry:$/;"	f
get_slow_functions	brain/tools/runtime_profiler.py	/^    def get_slow_functions(self, threshold: float = 1.0) -> List[FunctionProfile]:$/;"	m	class:ProfileRegistry
handle	django_settings_enumerate/management/commands/enumerate_settings.py	/^    def handle(self, *args, **options):$/;"	m	class:Command
help	brain/tools/ast_performance_analyzer.py	/^        help='Complexity threshold for hotspot detection (default: 15)'$/;"	v
help	brain/tools/ast_performance_analyzer.py	/^        help='Output file path (default: stdout for markdown, reports\/complexity-audit.{md,json})'$/;"	v
help	brain/tools/ast_performance_analyzer.py	/^        help='Output format (default: markdown)'$/;"	v
help	brain/tools/ast_performance_analyzer.py	/^        help='Print brief summary only (no file output)'$/;"	v
help	brain/tools/ast_performance_analyzer.py	/^        help='Root directory to analyze'$/;"	v
help	brain/tools/async_pattern_analyzer.py	/^        help='Output file path (default: reports\/async-patterns-audit.{md,json})'$/;"	v
help	brain/tools/async_pattern_analyzer.py	/^        help='Output format (default: markdown)'$/;"	v
help	brain/tools/async_pattern_analyzer.py	/^        help='Print brief summary only (no file output)'$/;"	v
help	brain/tools/async_pattern_analyzer.py	/^        help='Root directory to analyze'$/;"	v
help	brain/tools/runtime_profiler.py	/^        help='Clear profiling data'$/;"	v
help	brain/tools/runtime_profiler.py	/^        help='Output file path (markdown or json based on extension)'$/;"	v
help	brain/tools/runtime_profiler.py	/^        help='Show current profiling data'$/;"	v
help	django_settings_enumerate/management/commands/enumerate_settings.py	/^    help = "Display an ordered list of Django settings."$/;"	v	class:Command
info	brain/validate_brain.py	/^    def info(self, msg: str):$/;"	m	class:BrainValidator
is_sensitive_key	django_settings_enumerate/core.py	/^def is_sensitive_key(key: str, pattern: re.Pattern = SENSITIVE_PATTERN) -> bool:$/;"	f
load_metadata_from_monolith	brain/update_index.py	/^def load_metadata_from_monolith():$/;"	f
main	brain/tools/ast_performance_analyzer.py	/^def main():$/;"	f
main	brain/tools/async_pattern_analyzer.py	/^def main():$/;"	f
main	brain/tools/runtime_profiler.py	/^def main():$/;"	f
main	brain/update_index.py	/^def main():$/;"	f
main	brain/validate_brain.py	/^def main():$/;"	f
metrics	brain/tools/ast_performance_analyzer.py	/^    metrics = analyzer.analyze()$/;"	v
output_path	brain/tools/ast_performance_analyzer.py	/^                output_path = args.output or reports_dir \/ "complexity-audit.json"$/;"	v
output_path	brain/tools/ast_performance_analyzer.py	/^                output_path = reports_dir \/ "complexity-audit.json"$/;"	v
output_path	brain/tools/ast_performance_analyzer.py	/^            output_path = args.output or reports_dir \/ "complexity-audit.md"$/;"	v
output_path	brain/tools/async_pattern_analyzer.py	/^                output_path = args.output or reports_dir \/ "async-patterns-audit.json"$/;"	v
output_path	brain/tools/async_pattern_analyzer.py	/^                output_path = reports_dir \/ "async-patterns-audit.json"$/;"	v
output_path	brain/tools/async_pattern_analyzer.py	/^            output_path = args.output or reports_dir \/ "async-patterns-audit.md"$/;"	v
p95_time	brain/tools/runtime_profiler.py	/^    def p95_time(self) -> float:$/;"	m	class:FunctionProfile
p99_time	brain/tools/runtime_profiler.py	/^    def p99_time(self) -> float:$/;"	m	class:FunctionProfile
parse_text_dump	django_settings_enumerate/core.py	/^def parse_text_dump(content: str) -> dict[str, str]:$/;"	f
print_results	brain/validate_brain.py	/^    def print_results(self) -> bool:$/;"	m	class:BrainValidator
print_summary	brain/tools/ast_performance_analyzer.py	/^    def print_summary(metrics: CodebaseMetrics):$/;"	m	class:OutputFormatter
print_summary	brain/tools/async_pattern_analyzer.py	/^    def print_summary(report: AsyncAnalysisReport):$/;"	m	class:OutputFormatter
print_summary	brain/tools/runtime_profiler.py	/^    def print_summary(self):$/;"	m	class:ProfileReporter
print_summary	brain/update_index.py	/^def print_summary(patterns, support_files):$/;"	f
profile	brain/tools/runtime_profiler.py	/^def profile(memory: bool = False):$/;"	f
pytest_addoption	brain/tools/pytest_perf_plugin.py	/^def pytest_addoption(parser):$/;"	f
pytest_configure	brain/tools/pytest_perf_plugin.py	/^def pytest_configure(config):$/;"	f
pytest_runtest_call	brain/tools/pytest_perf_plugin.py	/^    def pytest_runtest_call(self, item):$/;"	m	class:PerformancePlugin
pytest_terminal_summary	brain/tools/pytest_perf_plugin.py	/^    def pytest_terminal_summary(self, terminalreporter):$/;"	m	class:PerformancePlugin
pytest_unconfigure	brain/tools/pytest_perf_plugin.py	/^def pytest_unconfigure(config):$/;"	f
record	brain/tools/runtime_profiler.py	/^    def record(self, func_name: str, module: str, elapsed: float,$/;"	m	class:ProfileRegistry
report	brain/tools/async_pattern_analyzer.py	/^    report = analyzer.analyze()$/;"	v
reporter	brain/tools/runtime_profiler.py	/^    reporter = ProfileReporter(_registry)$/;"	v
reports_dir	brain/tools/ast_performance_analyzer.py	/^        reports_dir = Path("reports")$/;"	v
reports_dir	brain/tools/async_pattern_analyzer.py	/^        reports_dir = Path("reports")$/;"	v
requires_system_checks	django_settings_enumerate/management/commands/enumerate_settings.py	/^    requires_system_checks = []$/;"	v	class:Command
run	brain/validate_brain.py	/^    def run(self) -> bool:$/;"	m	class:BrainValidator
success	brain/validate_brain.py	/^    def success(self, msg: str):$/;"	m	class:BrainValidator
sync_wrapper	brain/tools/runtime_profiler.py	/^            def sync_wrapper(*args, **kwargs):$/;"	f	function:profile.decorator
test_added	tests/test_core.py	/^    def test_added(self):$/;"	m	class:TestDiffSettings
test_added	tests/test_core.py	/^    def test_added(self):$/;"	m	class:TestFormatDiff
test_api	tests/test_core.py	/^    def test_api(self):$/;"	m	class:TestIsSensitiveKey
test_case_insensitive	tests/test_core.py	/^    def test_case_insensitive(self):$/;"	m	class:TestIsSensitiveKey
test_case_insensitive_prefix	tests/test_core.py	/^    def test_case_insensitive_prefix(self):$/;"	m	class:TestFilterByPrefix
test_changed	tests/test_core.py	/^    def test_changed(self):$/;"	m	class:TestDiffSettings
test_changed	tests/test_core.py	/^    def test_changed(self):$/;"	m	class:TestFormatDiff
test_deterministic	tests/test_core.py	/^    def test_deterministic(self):$/;"	m	class:TestHashValue
test_different_values_different_hashes	tests/test_core.py	/^    def test_different_values_different_hashes(self):$/;"	m	class:TestHashValue
test_empty	tests/test_core.py	/^    def test_empty(self):$/;"	m	class:TestFlattenSettings
test_empty	tests/test_core.py	/^    def test_empty(self):$/;"	m	class:TestFormatJson
test_empty	tests/test_core.py	/^    def test_empty(self):$/;"	m	class:TestFormatText
test_empty_content	tests/test_core.py	/^    def test_empty_content(self):$/;"	m	class:TestParseTextDump
test_empty_diff	tests/test_core.py	/^    def test_empty_diff(self):$/;"	m	class:TestFormatDiff
test_empty_object	tests/test_core.py	/^    def test_empty_object(self):$/;"	m	class:TestExtractSettings
test_extracts_uppercase_only	tests/test_core.py	/^    def test_extracts_uppercase_only(self):$/;"	m	class:TestExtractSettings
test_filters_by_prefix	tests/test_core.py	/^    def test_filters_by_prefix(self):$/;"	m	class:TestFilterByPrefix
test_full_diff	tests/test_core.py	/^    def test_full_diff(self):$/;"	m	class:TestFormatDiff
test_hashes_sensitive_key	tests/test_core.py	/^    def test_hashes_sensitive_key(self):$/;"	m	class:TestCleanseValue
test_hashes_sensitive_keys	tests/test_core.py	/^    def test_hashes_sensitive_keys(self):$/;"	m	class:TestCleanseSettings
test_json_object	tests/test_core.py	/^    def test_json_object(self):$/;"	m	class:TestFormatJson
test_list	tests/test_core.py	/^    def test_list(self):$/;"	m	class:TestFlattenSettings
test_list_flattened	tests/test_core.py	/^    def test_list_flattened(self):$/;"	m	class:TestFormatText
test_mixed	tests/test_core.py	/^    def test_mixed(self):$/;"	m	class:TestDiffSettings
test_mixed_nesting	tests/test_core.py	/^    def test_mixed_nesting(self):$/;"	m	class:TestFlattenSettings
test_nested_dict	tests/test_core.py	/^    def test_nested_dict(self):$/;"	m	class:TestFlattenSettings
test_nested_dict_flattened	tests/test_core.py	/^    def test_nested_dict_flattened(self):$/;"	m	class:TestFormatText
test_nested_round_trip	tests/test_core.py	/^    def test_nested_round_trip(self):$/;"	m	class:TestParseTextDump
test_no_changes	tests/test_core.py	/^    def test_no_changes(self):$/;"	m	class:TestDiffSettings
test_no_match	tests/test_core.py	/^    def test_no_match(self):$/;"	m	class:TestFilterByPrefix
test_non_sensitive	tests/test_core.py	/^    def test_non_sensitive(self):$/;"	m	class:TestIsSensitiveKey
test_non_serializable_fallback	tests/test_core.py	/^    def test_non_serializable_fallback(self):$/;"	m	class:TestFormatText
test_non_serializable_falls_back_to_repr	tests/test_core.py	/^    def test_non_serializable_falls_back_to_repr(self):$/;"	m	class:TestFormatJson
test_null_value	tests/test_core.py	/^    def test_null_value(self):$/;"	m	class:TestFormatText
test_passes_non_sensitive	tests/test_core.py	/^    def test_passes_non_sensitive(self):$/;"	m	class:TestCleanseValue
test_password	tests/test_core.py	/^    def test_password(self):$/;"	m	class:TestIsSensitiveKey
test_recurses_into_dict	tests/test_core.py	/^    def test_recurses_into_dict(self):$/;"	m	class:TestCleanseValue
test_recurses_into_list	tests/test_core.py	/^    def test_recurses_into_list(self):$/;"	m	class:TestCleanseValue
test_recurses_into_tuple	tests/test_core.py	/^    def test_recurses_into_tuple(self):$/;"	m	class:TestCleanseValue
test_removed	tests/test_core.py	/^    def test_removed(self):$/;"	m	class:TestDiffSettings
test_removed	tests/test_core.py	/^    def test_removed(self):$/;"	m	class:TestFormatDiff
test_returns_hex_string	tests/test_core.py	/^    def test_returns_hex_string(self):$/;"	m	class:TestHashValue
test_round_trip	tests/test_core.py	/^    def test_round_trip(self):$/;"	m	class:TestParseTextDump
test_scalar_values	tests/test_core.py	/^    def test_scalar_values(self):$/;"	m	class:TestFlattenSettings
test_scalar_values	tests/test_core.py	/^    def test_scalar_values(self):$/;"	m	class:TestFormatText
test_secret_key	tests/test_core.py	/^    def test_secret_key(self):$/;"	m	class:TestIsSensitiveKey
test_show_sensitive	tests/test_core.py	/^    def test_show_sensitive(self):$/;"	m	class:TestCleanseSettings
test_show_sensitive_bypasses	tests/test_core.py	/^    def test_show_sensitive_bypasses(self):$/;"	m	class:TestCleanseValue
test_signature	tests/test_core.py	/^    def test_signature(self):$/;"	m	class:TestIsSensitiveKey
test_skips_blank_lines	tests/test_core.py	/^    def test_skips_blank_lines(self):$/;"	m	class:TestParseTextDump
test_sorted_alphabetically	tests/test_core.py	/^    def test_sorted_alphabetically(self):$/;"	m	class:TestExtractSettings
test_sorted_output	tests/test_core.py	/^    def test_sorted_output(self):$/;"	m	class:TestFlattenSettings
test_string_value_json_encoded	tests/test_core.py	/^    def test_string_value_json_encoded(self):$/;"	m	class:TestFormatText
test_token	tests/test_core.py	/^    def test_token(self):$/;"	m	class:TestIsSensitiveKey
test_tuple	tests/test_core.py	/^    def test_tuple(self):$/;"	m	class:TestFlattenSettings
to_json	brain/tools/ast_performance_analyzer.py	/^    def to_json(metrics: CodebaseMetrics, output_file: Path):$/;"	m	class:OutputFormatter
to_json	brain/tools/async_pattern_analyzer.py	/^    def to_json(report: AsyncAnalysisReport, output_file: Path):$/;"	m	class:OutputFormatter
to_json	brain/tools/runtime_profiler.py	/^    def to_json(self, output_path: Path):$/;"	m	class:ProfileReporter
to_markdown	brain/tools/ast_performance_analyzer.py	/^    def to_markdown(metrics: CodebaseMetrics, output_file: Path, threshold: int = 15):$/;"	m	class:OutputFormatter
to_markdown	brain/tools/async_pattern_analyzer.py	/^    def to_markdown(report: AsyncAnalysisReport, output_file: Path):$/;"	m	class:OutputFormatter
to_markdown	brain/tools/runtime_profiler.py	/^    def to_markdown(self, output_path: Path):$/;"	m	class:ProfileReporter
type	brain/tools/ast_performance_analyzer.py	/^        type=Path,$/;"	v
type	brain/tools/ast_performance_analyzer.py	/^        type=int,$/;"	v
type	brain/tools/async_pattern_analyzer.py	/^        type=Path,$/;"	v
type	brain/tools/runtime_profiler.py	/^        type=Path,$/;"	v
validate_all_xml_files	brain/validate_brain.py	/^    def validate_all_xml_files(self):$/;"	m	class:BrainValidator
validate_index_exists	brain/validate_brain.py	/^    def validate_index_exists(self) -> etree._ElementTree | None:$/;"	m	class:BrainValidator
validate_intent_pattern_map	brain/validate_brain.py	/^    def validate_intent_pattern_map(self, index_tree: etree._ElementTree):$/;"	m	class:BrainValidator
validate_monolith_is_metadata_only	brain/validate_brain.py	/^    def validate_monolith_is_metadata_only(self):$/;"	m	class:BrainValidator
validate_output	brain/update_index.py	/^def validate_output():$/;"	f
validate_pattern_file_structure	brain/validate_brain.py	/^    def validate_pattern_file_structure(self):$/;"	m	class:BrainValidator
validate_pattern_files	brain/validate_brain.py	/^    def validate_pattern_files(self, index_tree: etree._ElementTree):$/;"	m	class:BrainValidator
validate_statistics	brain/validate_brain.py	/^    def validate_statistics(self, index_tree: etree._ElementTree):$/;"	m	class:BrainValidator
validate_support_files	brain/validate_brain.py	/^    def validate_support_files(self, index_tree: etree._ElementTree):$/;"	m	class:BrainValidator
validate_xml_wellformed	brain/validate_brain.py	/^    def validate_xml_wellformed(self, filepath: Path) -> bool:$/;"	m	class:BrainValidator
visit_AsyncFor	brain/tools/ast_performance_analyzer.py	/^    def visit_AsyncFor(self, node):$/;"	m	class:ComplexityVisitor
visit_AsyncFunctionDef	brain/tools/ast_performance_analyzer.py	/^    def visit_AsyncFunctionDef(self, node):$/;"	m	class:ComplexityVisitor
visit_AsyncFunctionDef	brain/tools/async_pattern_analyzer.py	/^    def visit_AsyncFunctionDef(self, node):$/;"	m	class:AsyncFunctionScanner
visit_AsyncFunctionDef	brain/tools/async_pattern_analyzer.py	/^    def visit_AsyncFunctionDef(self, node):$/;"	m	class:BlockingIODetector
visit_AsyncFunctionDef	brain/tools/async_pattern_analyzer.py	/^    def visit_AsyncFunctionDef(self, node):$/;"	m	class:GatherAnalyzer
visit_AsyncFunctionDef	brain/tools/async_pattern_analyzer.py	/^    def visit_AsyncFunctionDef(self, node):$/;"	m	class:SequentialAwaitDetector
visit_AsyncWith	brain/tools/ast_performance_analyzer.py	/^    def visit_AsyncWith(self, node):$/;"	m	class:ComplexityVisitor
visit_Call	brain/tools/async_pattern_analyzer.py	/^    def visit_Call(self, node):$/;"	m	class:BlockingIODetector
visit_Call	brain/tools/async_pattern_analyzer.py	/^    def visit_Call(self, node):$/;"	m	class:GatherAnalyzer
visit_DictComp	brain/tools/ast_performance_analyzer.py	/^    def visit_DictComp(self, node):$/;"	m	class:ComplexityVisitor
visit_ExceptHandler	brain/tools/ast_performance_analyzer.py	/^    def visit_ExceptHandler(self, node):$/;"	m	class:ComplexityVisitor
visit_For	brain/tools/ast_performance_analyzer.py	/^    def visit_For(self, node):$/;"	m	class:ComplexityVisitor
visit_FunctionDef	brain/tools/ast_performance_analyzer.py	/^    def visit_FunctionDef(self, node):$/;"	m	class:ComplexityVisitor
visit_GeneratorExp	brain/tools/ast_performance_analyzer.py	/^    def visit_GeneratorExp(self, node):$/;"	m	class:ComplexityVisitor
visit_If	brain/tools/ast_performance_analyzer.py	/^    def visit_If(self, node):$/;"	m	class:ComplexityVisitor
visit_ListComp	brain/tools/ast_performance_analyzer.py	/^    def visit_ListComp(self, node):$/;"	m	class:ComplexityVisitor
visit_Return	brain/tools/ast_performance_analyzer.py	/^    def visit_Return(self, node):$/;"	m	class:ComplexityVisitor
visit_SetComp	brain/tools/ast_performance_analyzer.py	/^    def visit_SetComp(self, node):$/;"	m	class:ComplexityVisitor
visit_While	brain/tools/ast_performance_analyzer.py	/^    def visit_While(self, node):$/;"	m	class:ComplexityVisitor
warning	brain/validate_brain.py	/^    def warning(self, msg: str):$/;"	m	class:BrainValidator
