llmcc-python 0.2.13

LLMCC - Language Model Code Collection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod bind;
mod collect;
pub mod descriptor;
pub mod token;

pub use crate::bind::{bind_symbols, BindingResult};
pub use crate::collect::{collect_symbols, CollectionResult};
pub use crate::descriptor::{
    CallArgument, CallDescriptor, CallTarget, ClassField, FunctionParameter, ImportDescriptor,
    ImportKind, PythonClassDescriptor, PythonFunctionDescriptor, VariableDescriptor, VariableKind,
    VariableScope,
};
pub use llmcc_core::{
    build_llmcc_graph, build_llmcc_ir, print_llmcc_graph, print_llmcc_ir, CompileCtxt,
    ProjectGraph, ProjectQuery,
};
pub use token::LangPython;