codefinetuner 0.1.0__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/.github/workflows/release.yaml +1 -1
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/.github/workflows/release_test.yaml +1 -2
- codefinetuner-0.2.0/.github/workflows/tests.yaml +24 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/PKG-INFO +45 -49
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/README.md +44 -48
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/docs/config-file.md +13 -10
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/docs/inference-vscode.md +4 -28
- codefinetuner-0.2.0/docs/install-nvidia-l4-driver.md +98 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/docs/tree-sitter-customization.md +2 -3
- codefinetuner-0.2.0/src/codefinetuner/__init__.py +26 -0
- codefinetuner-0.2.0/src/codefinetuner/convert/__init__.py +7 -0
- codefinetuner-0.2.0/src/codefinetuner/evaluate/__init__.py +7 -0
- codefinetuner-0.2.0/src/codefinetuner/finetune/__init__.py +7 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/pipeline.py +3 -1
- codefinetuner-0.2.0/src/codefinetuner/preprocess/__init__.py +7 -0
- codefinetuner-0.1.0/src/codefinetuner/convert/__init__.py +0 -0
- codefinetuner-0.1.0/src/codefinetuner/evaluate/__init__.py +0 -0
- codefinetuner-0.1.0/src/codefinetuner/finetune/__init__.py +0 -0
- codefinetuner-0.1.0/src/codefinetuner/preprocess/__init__.py +0 -0
- codefinetuner-0.1.0/third_party/tree-sitter-python/tests/__init__.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/.dockerignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/.gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/.gitmodules +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/.python-version +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/Dockerfile +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/LICENSE.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/config/codefinetuner_config.yaml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/docs/InstallLlamaCpp.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/docs/code_block.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/docs/code_file.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/docs/code_subblock.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/pyproject.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/requirements.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/scripts/backup_finetuned.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/scripts/decode_dataset.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/scripts/merge_lora_adapter_and_save.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/scripts/plot_loss.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/scripts/save_base_hf_model.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/scripts/test_ast_parser.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/scripts/unzip_all_in_directory.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/convert/config.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/convert/convert_hf_to_gguf.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/convert/convert_hf_to_gguf.version +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/convert/run.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/evaluate/analyze.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/evaluate/benchmark.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/evaluate/codebleu_shim.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/evaluate/config.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/evaluate/evaluate.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/evaluate/generate.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/evaluate/metrics.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/evaluate/run.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/finetune/config.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/finetune/model.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/finetune/run.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/finetune/train.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/preprocess/config.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/preprocess/extract.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/preprocess/process.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/preprocess/run.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/src/codefinetuner/preprocess/tree_sitter_definitions.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/codefinetuner/test_pipeline.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/config/codefinetuner_config.yaml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/convert/test_config.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/convert/test_run.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/data/eval/eval_test.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/data/test/test_test.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/data/train/train_test.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/evaluate/test_analyze.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/evaluate/test_benchmark.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/evaluate/test_config.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/evaluate/test_evaluate.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/evaluate/test_generate.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/evaluate/test_metrics.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/evaluate/test_run.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/finetune/test_config.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/finetune/test_model.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/finetune/test_run.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/finetune/test_train.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/models/Qwen2.5-Coder-0.5B/chat_template.jinja +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/models/Qwen2.5-Coder-0.5B/config.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/models/Qwen2.5-Coder-0.5B/generation_config.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/models/Qwen2.5-Coder-0.5B/tokenizer.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/models/Qwen2.5-Coder-0.5B/tokenizer_config.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/outputs/evaluate/datasets/benchmark_dataset.jsonl +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/outputs/finetune/results/lora_model/chat_template.jinja +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/outputs/finetune/results/lora_model/tokenizer.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/outputs/finetune/results/lora_model/tokenizer_config.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/outputs/finetune/results/trainer_log.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/outputs/preprocess/results/datasets/eval_dataset.jsonl +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/outputs/preprocess/results/datasets/test_dataset.jsonl +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/outputs/preprocess/results/datasets/train_dataset.jsonl +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/preprocess/test_config.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/preprocess/test_extract.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/preprocess/test_process.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/tests/preprocess/test_run.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.editorconfig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.git +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.gitattributes +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.github/FUNDING.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.github/dependabot.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.github/workflows/lint.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.github/workflows/publish.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/.gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/CMakeLists.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/Cargo.lock +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/LICENSE +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/Makefile +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/Package.resolved +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/Package.swift +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/binding.gyp +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/c/tree-sitter-c.pc.in +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/c/tree_sitter/tree-sitter-c.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/go/binding.go +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/go/binding_test.go +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/node/binding.cc +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/node/binding_test.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/node/index.d.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/node/index.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/python/tests/test_binding.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/__init__.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/__init__.pyi +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/binding.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/python/tree_sitter_c/py.typed +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/rust/build.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/rust/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/swift/TreeSitterC/c.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/bindings/swift/TreeSitterCTests/TreeSitterCTests.swift +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/eslint.config.mjs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/examples/cluster.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/examples/malloc.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/examples/parser.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/go.mod +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/go.sum +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/package-lock.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/package.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/pyproject.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/queries/highlights.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/queries/tags.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/setup.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/src/grammar.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/src/node-types.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/src/parser.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/src/tree_sitter/alloc.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/src/tree_sitter/array.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/src/tree_sitter/parser.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/corpus/ambiguities.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/corpus/crlf.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/corpus/declarations.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/corpus/expressions.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/corpus/microsoft.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/corpus/preprocessor.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/corpus/statements.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/corpus/types.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/highlight/keywords.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/test/highlight/names.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-c/tree-sitter.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.editorconfig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.git +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.gitattributes +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.github/workflows/fuzz.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.github/workflows/lint.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.github/workflows/publish.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/.gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/CMakeLists.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/Cargo.lock +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/LICENSE +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/Makefile +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/Package.resolved +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/Package.swift +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/binding.gyp +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/c/tree-sitter-mojo.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/c/tree-sitter-mojo.pc.in +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/c/tree-sitter-python.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/go/binding.go +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/go/binding_test.go +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/go/go.mod +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/node/binding.cc +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/node/binding_test.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/node/index.d.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/node/index.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/python/tests/test_binding.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/__init__.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/__init__.pyi +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/binding.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/python/tree_sitter_mojo/py.typed +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/rust/build.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/rust/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/swift/TreeSitterMojo/mojo.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/swift/TreeSitterPython/python.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/bindings/swift/TreeSitterPythonTests/TreeSitterPythonTests.swift +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/eslint.config.mjs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/compound-statement-without-trailing-newline.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/crlf-line-endings.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/mixed-spaces-tabs.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/multiple-newlines.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/python2-grammar-crlf.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/python2-grammar.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/python3-grammar-crlf.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/python3-grammar.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/python3.8_grammar.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/simple-statements-without-trailing-newline.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/tabs.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/examples/trailing-whitespace.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/go.mod +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/go.sum +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/package-lock.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/package.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/pyproject.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/python.dylib.dSYM/Contents/Info.plist +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/python.dylib.dSYM/Contents/Resources/Relocations/aarch64/python.dylib.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/queries/highlights.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/queries/indents.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/queries/outline.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/queries/overrides.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/setup.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/src/grammar.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/src/node-types.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/src/parser.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/src/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/src/tree_sitter/alloc.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/src/tree_sitter/array.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/src/tree_sitter/parser.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test/corpus/errors.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test/corpus/expressions.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test/corpus/literals.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test/corpus/pattern_matching.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test/corpus/statements.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test/highlight/keywords.mojo +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test/highlight/parameters.mojo +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test/highlight/pattern_matching.mojo +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test/tags/main.mojo +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/test.mojo +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-mojo/tree-sitter.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/.clang-format +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/.editorconfig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/.git +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/.github/dependabot.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/.github/workflows/docs.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/.github/workflows/pypi.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/.gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/.gitmodules +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/LICENSE +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/MANIFEST.in +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/_static/favicon.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/_static/logo.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Language.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.LogType.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.LookaheadIterator.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Node.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Parser.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Point.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Query.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.QueryCursor.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.QueryError.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.QueryPredicate.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Range.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.Tree.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/classes/tree_sitter.TreeCursor.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/conf.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/docs/index.rst +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/examples/usage.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/examples/walk_tree.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/pyproject.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/setup.py +0 -0
- {codefinetuner-0.1.0/src/codefinetuner → codefinetuner-0.2.0/third_party/tree-sitter-python/tests}/__init__.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tests/test_language.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tests/test_lookahead_iterator.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tests/test_node.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tests/test_parser.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tests/test_query.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tests/test_tree.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/__init__.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/__init__.pyi +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/language.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/lookahead_iterator.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/module.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/node.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/parser.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/query.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/query_cursor.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/query_predicates.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/range.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/tree.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/tree_cursor.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/binding/types.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.cargo/config.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.dockerignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.editorconfig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.git +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.gitattributes +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/FUNDING.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/actions/cache/action.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/cliff.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/dependabot.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/close_unresponsive.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/cross.sh +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/make.sh +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/remove_response_label.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/reviewers_remove.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/scripts/tree-sitter.sh +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/backport.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/bindgen.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/build.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/docs.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/emscripten.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/nvim_ts.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/release.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/response.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/reviewers_remove.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/sanitize.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.github/workflows/wasm_exports.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/.gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/CONTRIBUTING.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/Cargo.lock +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/Dockerfile +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/FUNDING.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/LICENSE +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/Makefile +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/Package.swift +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/build.zig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/build.zig.zon +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/benches/benchmark.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/build.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/config/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/config/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/config/src/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/eslint/index.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/eslint/package-lock.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/eslint/package.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/build_lex_table.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/build_parse_table.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/coincident_tokens.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/item.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/item_set_builder.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/minimize_parse_table.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/mod.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/build_tables/token_conflicts.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/dedup.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/dsl.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/grammar_files.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/grammars.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/nfa.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/node_types.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/parse_grammar.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/expand_repeats.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/expand_tokens.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/extract_default_aliases.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/extract_tokens.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/flatten_grammar.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/intern_symbols.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/mod.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/prepare_grammar/process_inlines.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/render.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/rules.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/tables.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/templates/alloc.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/generate/src/templates/array.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/build.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/emscripten-version +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/loader/src/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/.gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/cli.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/dsl.d.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/install.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/npm/package.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/allocations.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/corpus_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/edits.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/mod.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/random.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/fuzz/scope_sequence.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/highlight.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/init.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/input.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/logger.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/main.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/parse.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/playground.html +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/playground.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/query.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/query_testing.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tags.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/.editorconfig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/PARSER_NAME.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/PARSER_NAME.pc.in +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/__init__.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/__init__.pyi +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/_cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding.go +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding.gyp +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding_test.go +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/binding_test.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/build.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/build.zig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/build.zig.zon +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/cmakelists.cmake +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/gitattributes +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/go.mod +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/index.d.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/index.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/js-binding.cc +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/makefile +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/package.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/package.swift +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/py-binding.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/pyproject.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/root.zig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/setup.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/test.zig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/test_binding.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/templates/tests.swift +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/test_highlight.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/test_tags.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/async_context_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/corpus_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/detect_language.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/allocations.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/dirs.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/edits.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/fixtures.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/mod.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/helpers/query_helpers.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/highlight_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/language_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/mod.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/node_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/parser_hang_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/parser_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/pathological_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/proc_macro/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/proc_macro/src/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/query_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/tags_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/test_highlight_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/test_tags_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/text_provider_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/tree_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/tests/wasm_language_test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/util.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/version.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/cli/src/wasm.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/.gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/book.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/3-syntax-highlighting.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/4-code-navigation.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/5-implementation.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/6-contributing.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/7-playground.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/SUMMARY.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/css/mdbook-admonish.css +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/css/playground.css +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/images/favicon-16x16.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/images/favicon-32x32.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/images/tree-sitter-small.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/js/playground.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/schemas/config.schema.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/assets/schemas/grammar.schema.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/build.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/complete.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/dump-languages.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/fuzz.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/generate.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/highlight.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/index.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/init-config.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/init.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/parse.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/playground.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/query.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/tags.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/test.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/cli/version.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/1-getting-started.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/2-the-grammar-dsl.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/3-writing-the-grammar.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/4-external-scanners.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/5-writing-tests.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/6-publishing.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/creating-parsers/index.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/index.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/1-getting-started.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/2-basic-parsing.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/3-advanced-parsing.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/4-walking-trees.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/6-static-node-types.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/index.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/1-syntax.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/2-operators.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/3-predicates-and-directives.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/4-api.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/src/using-parsers/queries/index.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/docs/theme/favicon.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/include/tree_sitter/highlight.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/src/c_lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/highlight/src/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/.ccls +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/CMakeLists.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/bindings.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/build.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/ffi.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/util.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_rust/wasm_language.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/.gitattributes +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/.gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/CONTRIBUTING.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/eslint.config.mjs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/exports.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/imports.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/prefix.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/tree-sitter.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/lib/tree-sitter.d.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/package-lock.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/package.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/script/build.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/script/check-artifacts-fresh.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/script/generate-dts.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/bindings.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/constants.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/index.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/language.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/lookahead_iterator.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/marshal.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/node.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/parser.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/query.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/tree.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/src/tree_cursor.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/helper.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/language.test.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/node.test.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/parser.test.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/query.test.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/test/tree.test.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/tsconfig.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/vitest.config.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/web-tree-sitter.d.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/binding_web/web-tree-sitter.d.ts.map +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/include/tree_sitter/api.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/language/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/language/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/language/language.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/alloc.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/alloc.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/array.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/atomic.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/clock.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/error_costs.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/get_changed_ranges.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/get_changed_ranges.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/host.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/language.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/language.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/length.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/lexer.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/lexer.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/lib.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/node.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/parser.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/parser.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/point.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/portable/endian.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/query.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/reduce_action.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/reusable_node.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/stack.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/stack.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/subtree.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/subtree.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree_cursor.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/tree_cursor.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/ts_assert.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/ICU_SHA +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/LICENSE +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/ptypes.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/umachine.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/urename.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/utf.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/utf16.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode/utf8.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/unicode.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm/stdlib-symbols.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm/stdlib.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm/wasm-stdlib.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm_store.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/src/wasm_store.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/lib/tree-sitter.pc.in +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/rustfmt.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/tags/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/tags/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/tags/include/tree_sitter/tags.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/tags/src/c_lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/tags/src/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/c_errors.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/javascript_errors.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/json_errors.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/python_errors.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/error_corpus/ruby_errors.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/fixtures.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/grammars/.gitkeep +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/template_corpus/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/template_corpus/ruby_templates.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_inlined_rules/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_inlined_rules/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_rules/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_rules/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_token_rules/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_token_rules/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_unit_reductions/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliased_unit_reductions/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliases_in_root/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/aliases_in_root/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_error/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_error/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_tokens_with_escaped_chars/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/anonymous_tokens_with_escaped_chars/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_left/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_left/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_missing/expected_error.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_missing/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_right/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/associativity_right/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflict_in_repeat_rule/expected_error.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflict_in_repeat_rule/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflict_in_repeat_rule_after_external_token/expected_error.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflict_in_repeat_rule_after_external_token/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflicting_precedence/expected_error.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/conflicting_precedence/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/depends_on_column/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/depends_on_column/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/depends_on_column/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/dynamic_precedence/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/dynamic_precedence/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/dynamic_precedence/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_extra_tokens/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_extra_tokens/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_extra_tokens/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_tokens/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_tokens/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_external_tokens/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_rules/expected_error.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/epsilon_rules/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_tokens/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_tokens/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_and_internal_tokens/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_extra_tokens/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_extra_tokens/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_extra_tokens/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_tokens/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_tokens/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_tokens/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_unicode_column_alignment/README.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_unicode_column_alignment/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_unicode_column_alignment/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/external_unicode_column_alignment/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/extra_non_terminals/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/extra_non_terminals/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/extra_non_terminals_with_shared_rules/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/extra_non_terminals_with_shared_rules/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_eof/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_eof/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_eof/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_should_hang_not_crash/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_should_hang_not_crash/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/get_col_should_hang_not_crash/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/immediate_tokens/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/immediate_tokens/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/indirect_recursion_in_transitions/expected_error.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/indirect_recursion_in_transitions/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inline_rules/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inline_rules/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inlined_aliased_rules/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inlined_aliased_rules/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inlined_aliased_rules/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inverted_external_token/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inverted_external_token/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inverted_external_token/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/inverted_external_token/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/invisible_start_rule/expected_error.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/invisible_start_rule/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/lexical_conflicts_due_to_state_merging/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/lexical_conflicts_due_to_state_merging/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/lexical_conflicts_due_to_state_merging/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_precedences/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_precedences/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_precedences/readme.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_rule_aliased_as_anonymous/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_rule_aliased_as_anonymous/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/named_rule_aliased_as_anonymous/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/nested_inlined_rules/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/nested_inlined_rules/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/nested_inlined_rules/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/next_sibling_from_zwt/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/next_sibling_from_zwt/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/partially_resolved_conflict/expected_error.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/partially_resolved_conflict/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/partially_resolved_conflict/readme.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_missing/expected_error.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_missing/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_missing/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_negative/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_negative/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_negative/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_positive/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_positive/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_single_child_positive/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_subsequence/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_subsequence/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_token/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_token/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/precedence_on_token/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/readme_grammar/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/readme_grammar/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/reserved_words/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/reserved_words/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/start_rule_is_blank/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/start_rule_is_blank/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/start_rule_is_token/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/start_rule_is_token/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unicode_classes/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unicode_classes/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unused_rules/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unused_rules/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/unused_rules/readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/uses_current_column/corpus.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/uses_current_column/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/test/fixtures/test_grammars/uses_current_column/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/benchmark.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/build_wasm.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/bump.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/check_wasm_exports.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/clippy.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/fetch.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/generate.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/main.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/test.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/upgrade_emscripten.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/core/xtask/src/upgrade_wasmtime.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-python/tree_sitter/py.typed +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.editorconfig +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.git +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.gitattributes +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.github/dependabot.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.github/workflows/ci.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.github/workflows/fuzz.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.github/workflows/publish.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.github/workflows/regenerate.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.github/workflows/release.yml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/.gitignore +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/CMakeLists.txt +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/Cargo.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/Contributing.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/License.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/Makefile +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/Package.swift +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/Readme.md +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/binding.gyp +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/c/tree-sitter-vhdl.pc.in +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/c/tree_sitter/tree-sitter-vhdl.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/go/binding.go +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/go/binding_test.go +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/node/binding.cc +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/node/binding_test.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/node/index.d.ts +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/node/index.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/python/tests/test_binding.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/__init__.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/__init__.pyi +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/binding.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/python/tree_sitter_vhdl/py.typed +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/rust/build.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/rust/lib.rs +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/swift/TreeSitterVhdl/vhdl.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/bindings/swift/TreeSitterVhdlTests/TreeSitterVhdlTests.swift +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/examples/Screenshot.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/examples/Screenshot.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/examples/Screenshot_OneDark.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/examples/Screenshot_TokyoNight.png +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/get_queries.sh +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/go.mod +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/grammar.js +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/package-lock.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/package.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/pyproject.toml +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/queries/Helix/highlights.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/queries/Neovim/context.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/queries/Neovim/folds.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/queries/Neovim/highlights.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/queries/Neovim/injections.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/queries/Neovim/textobjects.scm +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/set_queries.sh +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/setup.py +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/TokenTree.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/TokenTree.inc +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/TokenType.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/TokenType.inc +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/core.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/debug_macros.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/grammar.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/fixed_pkg.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/float_pkg.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/math_complex.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/math_real.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/numeric_std.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/libraries/ieee/std_logic_1164.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/libraries/std/env.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/libraries/std/standard.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/libraries/std/textio.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/node-types.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/parser.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/scanner.c +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/tree_sitter/alloc.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/tree_sitter/array.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/src/tree_sitter/parser.h +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/architecture_basic.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/bit_values.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/comments.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/entity.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/if_generate.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/if_statement.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/library_constant_break.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/literals.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/prioritised_if.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/architecture.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/configuration.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/entity.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/generate.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/specification_examples/literal.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/string_literal_std_logic.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/tool_directives.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/corpus/use_clause.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/highlight/architecture_basic.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/highlight/bit_values.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test/highlight/multiuse_keywords.vhd +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/test.sh +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/tree-sitter.json +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/third_party/tree-sitter-vhdl/update_bindings.sh +0 -0
- {codefinetuner-0.1.0 → codefinetuner-0.2.0}/uv.lock +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
test:
|
|
9
|
+
name: Pytest
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
with:
|
|
14
|
+
fetch-depth: 0
|
|
15
|
+
submodules: recursive
|
|
16
|
+
- name: Install uv and Set up Python
|
|
17
|
+
uses: astral-sh/setup-uv@v5
|
|
18
|
+
with:
|
|
19
|
+
python-version: "3.13"
|
|
20
|
+
enable-cache: true
|
|
21
|
+
- name: Install Dependencies
|
|
22
|
+
run: uv sync --group dev
|
|
23
|
+
- name: Run Pytest
|
|
24
|
+
run: uv run pytest
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codefinetuner
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Add your description here
|
|
5
5
|
Project-URL: Homepage, https://github.com/cuolm/codefinetuner
|
|
6
6
|
Project-URL: Repository, https://github.com/cuolm/codefinetuner.git
|
|
@@ -32,15 +32,13 @@ Requires-Dist: tree-sitter<0.23.0,>=0.22.0
|
|
|
32
32
|
Description-Content-Type: text/markdown
|
|
33
33
|
|
|
34
34
|
# CodeFinetuner
|
|
35
|
-
[](https://github.com/cuolm/codefinetuner/actions)
|
|
36
35
|
[](https://pypi.org/project/codefinetuner/)
|
|
37
36
|
[](LICENSE.txt)
|
|
38
|
-
[](https://github.com/cuolm/codefinetuner/actions/workflows/release.yaml)
|
|
38
|
+
[](https://github.com/cuolm/codefinetuner/actions/workflows/tests.yaml)
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
Fine-tuning is achieved by training a Low-Rank Adapter ([LoRA](https://arxiv.org/abs/2106.09685)) to perform Fill-In-the-Middle ([FIM](https://arxiv.org/abs/2207.14255)) completion.
|
|
40
|
+
CodeFinetuner fine-tunes a local code autocomplete model on your own repository for use in editors like VS Code or Vim/Neovim.
|
|
41
|
+
It trains a Low-Rank Adapter ([LoRA](https://arxiv.org/abs/2106.09685)) on Fill-In-the-Middle ([FIM](https://arxiv.org/abs/2207.14255)) examples so the model learns the structure and patterns of your codebase.
|
|
44
42
|
|
|
45
43
|
## Table of Contents
|
|
46
44
|
- [Architecture](#architecture)
|
|
@@ -50,23 +48,25 @@ Fine-tuning is achieved by training a Low-Rank Adapter ([LoRA](https://arxiv.org
|
|
|
50
48
|
- [Quick Start](#quick-start)
|
|
51
49
|
- [Configuration](#configuration)
|
|
52
50
|
- [Usage](#usage)
|
|
53
|
-
- [
|
|
54
|
-
- [Docker](#docker)
|
|
55
|
-
- [Tree-sitter
|
|
51
|
+
- [Finetuned Model Usage](#finetuned-model-usage)
|
|
52
|
+
- [Docker Image](#docker-image)
|
|
53
|
+
- [Tree-sitter Customization](#tree-sitter-customization)
|
|
56
54
|
- [Tests](#tests)
|
|
57
55
|
- [Resources](#resources)
|
|
58
56
|
- [License](#license)
|
|
59
57
|
|
|
60
58
|
|
|
61
59
|
## Architecture
|
|
60
|
+
CodeFinetuner follows a simple pipeline. First, raw code is parsed and turned into FIM examples. These examples are then used to train a LoRA adapter and evaluate the fine‑tuned model using multiple metrics. Finally, the model is converted into GGUF format for deployment.
|
|
61
|
+
|
|
62
62
|
```text
|
|
63
63
|
Raw Code Files
|
|
64
64
|
|
|
|
65
65
|
v
|
|
66
|
-
[Preprocess] -- tree-sitter parsing -> FIM examples -> tokenized
|
|
66
|
+
[Preprocess] -- tree-sitter parsing -> FIM examples -> tokenized jsonl datasets
|
|
67
67
|
|
|
|
68
68
|
v
|
|
69
|
-
[Finetune] -- LoRA adapter training -> merged model
|
|
69
|
+
[Finetune] -- LoRA adapter training -> merged safetensors model
|
|
70
70
|
|
|
|
71
71
|
v
|
|
72
72
|
[Evaluate] -- CodeBLEU, SentenceBLEU, exact match, line match, perplexity
|
|
@@ -86,16 +86,16 @@ Raw Code Files
|
|
|
86
86
|
│ └── convert/
|
|
87
87
|
├── config/ # User configuration
|
|
88
88
|
│ └── codefinetuner_config.yaml
|
|
89
|
-
├── data/ # Default data directory
|
|
90
|
-
├── outputs/ # Pipeline
|
|
89
|
+
├── data/ # Default data directory
|
|
90
|
+
├── outputs/ # Pipeline outputs
|
|
91
91
|
├── scripts/ # Utility scripts
|
|
92
|
-
├── tests/ #
|
|
93
|
-
├── third_party/ # External submodules
|
|
94
|
-
└── docs/ # Documentation
|
|
92
|
+
├── tests/ # Tests
|
|
93
|
+
├── third_party/ # External submodules
|
|
94
|
+
└── docs/ # Documentation
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
## How Training Examples Are Created
|
|
98
|
-
|
|
98
|
+
CodeFinetuner builds FIM examples from real code structure, not random text chunks. It first extracts blocks such as functions or classes, then masks smaller sub-blocks like statements or expressions for the model to predict. This approach helps the model learn the logical structure of your codebase instead of unrelated fragments.
|
|
99
99
|
|
|
100
100
|
Here is an example illustrating how a single FIM example is created:
|
|
101
101
|
<table>
|
|
@@ -121,8 +121,6 @@ Here is an example illustrating how a single FIM example is created:
|
|
|
121
121
|
<|fim_middle|>count = count + (value & 1);\n value = (value >> 1);
|
|
122
122
|
```
|
|
123
123
|
|
|
124
|
-
Using this technique, rather than randomly splitting code into unrelated text chunks, helps the model learn the logical patterns and structure of your specific codebase.
|
|
125
|
-
|
|
126
124
|
## Installation
|
|
127
125
|
|
|
128
126
|
### From PyPI
|
|
@@ -131,7 +129,7 @@ uv add codefinetuner
|
|
|
131
129
|
# or
|
|
132
130
|
pip install codefinetuner
|
|
133
131
|
```
|
|
134
|
-
### From Source
|
|
132
|
+
### From Source
|
|
135
133
|
```bash
|
|
136
134
|
git clone --recurse-submodules https://github.com/cuolm/codefinetuner
|
|
137
135
|
cd codefinetuner
|
|
@@ -151,17 +149,15 @@ Create a configuration file according to the [Configuration](#configuration) sec
|
|
|
151
149
|
```python
|
|
152
150
|
import codefinetuner
|
|
153
151
|
|
|
154
|
-
# Run the complete pipeline
|
|
155
152
|
codefinetuner.run_pipeline("codefinetuner_config.yaml")
|
|
156
153
|
```
|
|
157
154
|
|
|
158
155
|
## Configuration
|
|
159
|
-
|
|
160
|
-
The pipeline uses a single-source-of-truth YAML configuration file. It utilizes YAML anchors (`&globals`) to share core parameters across all stages (`preprocess`, `finetune`, `evaluate`), ensuring consistency and reducing redundancy.
|
|
156
|
+
The pipeline uses a single-source-of-truth YAML configuration file. It utilizes YAML anchors (`&globals`) to share core parameters across all stages (`preprocess`, `finetune`, `evaluate`, `convert`), ensuring consistency and reducing redundancy.
|
|
161
157
|
|
|
162
158
|
### Configuration Structure
|
|
163
159
|
|
|
164
|
-
Create
|
|
160
|
+
Create `codefinetuner_config.yaml` using the template below. For the full parameter list, see the [Configuration Reference Guide](/docs/config-file.md).
|
|
165
161
|
|
|
166
162
|
```yaml
|
|
167
163
|
# globals contain all the mandatory parameters.
|
|
@@ -194,8 +190,11 @@ evaluate:
|
|
|
194
190
|
benchmark_sample_size: 4
|
|
195
191
|
# ... (evaluate specific settings)
|
|
196
192
|
|
|
193
|
+
convert:
|
|
194
|
+
<<: *globals
|
|
195
|
+
# ... (convert specific settings)
|
|
197
196
|
```
|
|
198
|
-
> **Note:**
|
|
197
|
+
> **Note:** See [`config/codefinetuner_config.yaml`](/config/codefinetuner_config.yaml) for a full production example.
|
|
199
198
|
|
|
200
199
|
### Data Preparation
|
|
201
200
|
Place source files in your `raw_data_path` (default: `workspace_path/data`).
|
|
@@ -210,9 +209,12 @@ Run the pipeline using the unified CLI:
|
|
|
210
209
|
uv run codefinetuner --config="config/codefinetuner_config.yaml"
|
|
211
210
|
```
|
|
212
211
|
|
|
213
|
-
**Pipeline
|
|
214
|
-
|
|
215
|
-
|
|
212
|
+
**Pipeline flags**
|
|
213
|
+
- `--config`: Use a different config file.
|
|
214
|
+
- `--skip-preprocess`: Skip preprocessing.
|
|
215
|
+
- `--skip-finetune`: Skip fine-tuning.
|
|
216
|
+
- `--skip-evaluate`: Skip evaluation.
|
|
217
|
+
- `--skip-convert`: Skip conversion.
|
|
216
218
|
|
|
217
219
|
### Python Module Usage
|
|
218
220
|
```python
|
|
@@ -227,18 +229,14 @@ codefinetuner.run_pipeline(
|
|
|
227
229
|
skip_preprocess=True,
|
|
228
230
|
skip_convert=True
|
|
229
231
|
)
|
|
230
|
-
|
|
231
|
-
# Individual stages
|
|
232
|
-
from codefinetuner import preprocess, finetune
|
|
233
|
-
preprocess.run("config.yaml")
|
|
234
232
|
```
|
|
235
233
|
|
|
236
|
-
##
|
|
237
|
-
The `convert` stage
|
|
238
|
-
For
|
|
234
|
+
## Finetuned Model Usage
|
|
235
|
+
The `convert` stage exports the final model to [GGUF](https://github.com/ggml-org/ggml/blob/master/docs/gguf.md) format for local inference. The resulting file is saved at `outputs/convert/results/lora_model.gguf`.
|
|
236
|
+
For setup instructions with the VS Code extension [llama.vscode](https://github.com/ggml-org/llama.vscode), see the [inference-vscode](/docs/inference-vscode.md) guide.
|
|
239
237
|
|
|
240
238
|
|
|
241
|
-
##
|
|
239
|
+
## Docker Image
|
|
242
240
|
|
|
243
241
|
#### 1. Build the Docker Image
|
|
244
242
|
Build the image from the `Dockerfile`, tagging it as codefinetuner-image.
|
|
@@ -246,10 +244,8 @@ Build the image from the `Dockerfile`, tagging it as codefinetuner-image.
|
|
|
246
244
|
docker build -t codefinetuner-image .
|
|
247
245
|
```
|
|
248
246
|
#### 2. Prepare Data and Run the Container
|
|
249
|
-
To allow the container to access your data for fine-tuning, use a bind mount to link your host machine's `data` directory to the container.
|
|
250
|
-
|
|
251
|
-
- Put all files you want to use for fine-tuning inside the `data` directory. For `manual` mode, include `train`, `eval`, and `test` subdirectories containing your manually splitted files.
|
|
252
|
-
- Start the container with the bind mount, and open a Bash shell depending on your host machine hardware:
|
|
247
|
+
To allow the container to access your data for fine-tuning, use a bind mount to link your host machine's `data` directory to the container.
|
|
248
|
+
On your host machine (where you run Docker), create a folder named `data` if it does not already exist. Put all files you want to use for fine-tuning inside the `data` directory. For manual mode, include `train`, `eval`, and `test` subfolders with the split you want to use.
|
|
253
249
|
|
|
254
250
|
#### NVIDIA GPU (Recommended)
|
|
255
251
|
Use this command to enable CUDA support for `torch` and `bitsandbytes`. Requires the [NVIDIA Container Toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html) installed on the host machine.
|
|
@@ -260,8 +256,7 @@ docker run --gpus all -it --rm \
|
|
|
260
256
|
codefinetuner-image /bin/bash
|
|
261
257
|
```
|
|
262
258
|
#### CPU Only
|
|
263
|
-
|
|
264
|
-
Use this command if no compatible GPU is available. Note that fine-tuning will be significantly slower.
|
|
259
|
+
Use this if you do not have a compatible GPU. Fine-tuning will be much slower.
|
|
265
260
|
```bash
|
|
266
261
|
docker run -it --rm \
|
|
267
262
|
-v $(pwd)/data:/app/data \
|
|
@@ -269,21 +264,22 @@ docker run -it --rm \
|
|
|
269
264
|
```
|
|
270
265
|
|
|
271
266
|
## Tree-sitter Customization
|
|
272
|
-
Tree-sitter
|
|
273
|
-
|
|
274
|
-
- [Add Language Definitions](docs/tree-sitter-customization.md#add-new-language-block-definitions) - Define `block_types`/`subblock_types` in JSON.
|
|
275
|
-
- [Build Custom Parser](docs/tree-sitter-customization.md#build-custom-parser) - Compile from source (e.g., Mojo).
|
|
267
|
+
Tree-sitter turns source code into structural blocks used to generate FIM examples. Use this section to add new languages or build missing parsers.
|
|
276
268
|
|
|
269
|
+
- [Add Language Definitions](docs/tree-sitter-customization.md#add-new-language-block-definitions): define `block_types` and `subblock_types` in JSON.
|
|
270
|
+
- [Build Custom Parser](docs/tree-sitter-customization.md#build-custom-parser): compile a parser from source, for example for Mojo.
|
|
277
271
|
|
|
278
272
|
## Tests
|
|
273
|
+
Run the test suite with:
|
|
274
|
+
|
|
279
275
|
```bash
|
|
280
276
|
pytest
|
|
281
277
|
```
|
|
282
278
|
|
|
283
|
-
##
|
|
279
|
+
## Resources
|
|
284
280
|
- [Qwen2.5-Coder Technical Report](https://arxiv.org/pdf/2409.12186)
|
|
285
281
|
- [Structure-Aware Fill-in-the-Middle Pretraining for Code](https://arxiv.org/pdf/2506.00204)
|
|
286
|
-
- [
|
|
282
|
+
- [LoRA: Low-Rank Adaptation of Large Language Models](https://arxiv.org/pdf/2106.09685)
|
|
287
283
|
- [Efficient Training of Language Models to Fill in the Middle](https://arxiv.org/pdf/2207.14255)
|
|
288
284
|
- [From Output to Evaluation: Does Raw Instruction-Tuned Code LLMs Output Suffice for Fill-in-the-Middle Code Generation?](https://arxiv.org/pdf/2505.18789)
|
|
289
285
|
- [CodeBLEU: a Method for Automatic Evaluation of Code Synthesis](https://arxiv.org/pdf/2009.10297)
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
# CodeFinetuner
|
|
2
|
-
[](https://github.com/cuolm/codefinetuner/actions)
|
|
3
2
|
[](https://pypi.org/project/codefinetuner/)
|
|
4
3
|
[](LICENSE.txt)
|
|
5
|
-
[](https://github.com/cuolm/codefinetuner/actions/workflows/release.yaml)
|
|
5
|
+
[](https://github.com/cuolm/codefinetuner/actions/workflows/tests.yaml)
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
Fine-tuning is achieved by training a Low-Rank Adapter ([LoRA](https://arxiv.org/abs/2106.09685)) to perform Fill-In-the-Middle ([FIM](https://arxiv.org/abs/2207.14255)) completion.
|
|
7
|
+
CodeFinetuner fine-tunes a local code autocomplete model on your own repository for use in editors like VS Code or Vim/Neovim.
|
|
8
|
+
It trains a Low-Rank Adapter ([LoRA](https://arxiv.org/abs/2106.09685)) on Fill-In-the-Middle ([FIM](https://arxiv.org/abs/2207.14255)) examples so the model learns the structure and patterns of your codebase.
|
|
11
9
|
|
|
12
10
|
## Table of Contents
|
|
13
11
|
- [Architecture](#architecture)
|
|
@@ -17,23 +15,25 @@ Fine-tuning is achieved by training a Low-Rank Adapter ([LoRA](https://arxiv.org
|
|
|
17
15
|
- [Quick Start](#quick-start)
|
|
18
16
|
- [Configuration](#configuration)
|
|
19
17
|
- [Usage](#usage)
|
|
20
|
-
- [
|
|
21
|
-
- [Docker](#docker)
|
|
22
|
-
- [Tree-sitter
|
|
18
|
+
- [Finetuned Model Usage](#finetuned-model-usage)
|
|
19
|
+
- [Docker Image](#docker-image)
|
|
20
|
+
- [Tree-sitter Customization](#tree-sitter-customization)
|
|
23
21
|
- [Tests](#tests)
|
|
24
22
|
- [Resources](#resources)
|
|
25
23
|
- [License](#license)
|
|
26
24
|
|
|
27
25
|
|
|
28
26
|
## Architecture
|
|
27
|
+
CodeFinetuner follows a simple pipeline. First, raw code is parsed and turned into FIM examples. These examples are then used to train a LoRA adapter and evaluate the fine‑tuned model using multiple metrics. Finally, the model is converted into GGUF format for deployment.
|
|
28
|
+
|
|
29
29
|
```text
|
|
30
30
|
Raw Code Files
|
|
31
31
|
|
|
|
32
32
|
v
|
|
33
|
-
[Preprocess] -- tree-sitter parsing -> FIM examples -> tokenized
|
|
33
|
+
[Preprocess] -- tree-sitter parsing -> FIM examples -> tokenized jsonl datasets
|
|
34
34
|
|
|
|
35
35
|
v
|
|
36
|
-
[Finetune] -- LoRA adapter training -> merged model
|
|
36
|
+
[Finetune] -- LoRA adapter training -> merged safetensors model
|
|
37
37
|
|
|
|
38
38
|
v
|
|
39
39
|
[Evaluate] -- CodeBLEU, SentenceBLEU, exact match, line match, perplexity
|
|
@@ -53,16 +53,16 @@ Raw Code Files
|
|
|
53
53
|
│ └── convert/
|
|
54
54
|
├── config/ # User configuration
|
|
55
55
|
│ └── codefinetuner_config.yaml
|
|
56
|
-
├── data/ # Default data directory
|
|
57
|
-
├── outputs/ # Pipeline
|
|
56
|
+
├── data/ # Default data directory
|
|
57
|
+
├── outputs/ # Pipeline outputs
|
|
58
58
|
├── scripts/ # Utility scripts
|
|
59
|
-
├── tests/ #
|
|
60
|
-
├── third_party/ # External submodules
|
|
61
|
-
└── docs/ # Documentation
|
|
59
|
+
├── tests/ # Tests
|
|
60
|
+
├── third_party/ # External submodules
|
|
61
|
+
└── docs/ # Documentation
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
## How Training Examples Are Created
|
|
65
|
-
|
|
65
|
+
CodeFinetuner builds FIM examples from real code structure, not random text chunks. It first extracts blocks such as functions or classes, then masks smaller sub-blocks like statements or expressions for the model to predict. This approach helps the model learn the logical structure of your codebase instead of unrelated fragments.
|
|
66
66
|
|
|
67
67
|
Here is an example illustrating how a single FIM example is created:
|
|
68
68
|
<table>
|
|
@@ -88,8 +88,6 @@ Here is an example illustrating how a single FIM example is created:
|
|
|
88
88
|
<|fim_middle|>count = count + (value & 1);\n value = (value >> 1);
|
|
89
89
|
```
|
|
90
90
|
|
|
91
|
-
Using this technique, rather than randomly splitting code into unrelated text chunks, helps the model learn the logical patterns and structure of your specific codebase.
|
|
92
|
-
|
|
93
91
|
## Installation
|
|
94
92
|
|
|
95
93
|
### From PyPI
|
|
@@ -98,7 +96,7 @@ uv add codefinetuner
|
|
|
98
96
|
# or
|
|
99
97
|
pip install codefinetuner
|
|
100
98
|
```
|
|
101
|
-
### From Source
|
|
99
|
+
### From Source
|
|
102
100
|
```bash
|
|
103
101
|
git clone --recurse-submodules https://github.com/cuolm/codefinetuner
|
|
104
102
|
cd codefinetuner
|
|
@@ -118,17 +116,15 @@ Create a configuration file according to the [Configuration](#configuration) sec
|
|
|
118
116
|
```python
|
|
119
117
|
import codefinetuner
|
|
120
118
|
|
|
121
|
-
# Run the complete pipeline
|
|
122
119
|
codefinetuner.run_pipeline("codefinetuner_config.yaml")
|
|
123
120
|
```
|
|
124
121
|
|
|
125
122
|
## Configuration
|
|
126
|
-
|
|
127
|
-
The pipeline uses a single-source-of-truth YAML configuration file. It utilizes YAML anchors (`&globals`) to share core parameters across all stages (`preprocess`, `finetune`, `evaluate`), ensuring consistency and reducing redundancy.
|
|
123
|
+
The pipeline uses a single-source-of-truth YAML configuration file. It utilizes YAML anchors (`&globals`) to share core parameters across all stages (`preprocess`, `finetune`, `evaluate`, `convert`), ensuring consistency and reducing redundancy.
|
|
128
124
|
|
|
129
125
|
### Configuration Structure
|
|
130
126
|
|
|
131
|
-
Create
|
|
127
|
+
Create `codefinetuner_config.yaml` using the template below. For the full parameter list, see the [Configuration Reference Guide](/docs/config-file.md).
|
|
132
128
|
|
|
133
129
|
```yaml
|
|
134
130
|
# globals contain all the mandatory parameters.
|
|
@@ -161,8 +157,11 @@ evaluate:
|
|
|
161
157
|
benchmark_sample_size: 4
|
|
162
158
|
# ... (evaluate specific settings)
|
|
163
159
|
|
|
160
|
+
convert:
|
|
161
|
+
<<: *globals
|
|
162
|
+
# ... (convert specific settings)
|
|
164
163
|
```
|
|
165
|
-
> **Note:**
|
|
164
|
+
> **Note:** See [`config/codefinetuner_config.yaml`](/config/codefinetuner_config.yaml) for a full production example.
|
|
166
165
|
|
|
167
166
|
### Data Preparation
|
|
168
167
|
Place source files in your `raw_data_path` (default: `workspace_path/data`).
|
|
@@ -177,9 +176,12 @@ Run the pipeline using the unified CLI:
|
|
|
177
176
|
uv run codefinetuner --config="config/codefinetuner_config.yaml"
|
|
178
177
|
```
|
|
179
178
|
|
|
180
|
-
**Pipeline
|
|
181
|
-
|
|
182
|
-
|
|
179
|
+
**Pipeline flags**
|
|
180
|
+
- `--config`: Use a different config file.
|
|
181
|
+
- `--skip-preprocess`: Skip preprocessing.
|
|
182
|
+
- `--skip-finetune`: Skip fine-tuning.
|
|
183
|
+
- `--skip-evaluate`: Skip evaluation.
|
|
184
|
+
- `--skip-convert`: Skip conversion.
|
|
183
185
|
|
|
184
186
|
### Python Module Usage
|
|
185
187
|
```python
|
|
@@ -194,18 +196,14 @@ codefinetuner.run_pipeline(
|
|
|
194
196
|
skip_preprocess=True,
|
|
195
197
|
skip_convert=True
|
|
196
198
|
)
|
|
197
|
-
|
|
198
|
-
# Individual stages
|
|
199
|
-
from codefinetuner import preprocess, finetune
|
|
200
|
-
preprocess.run("config.yaml")
|
|
201
199
|
```
|
|
202
200
|
|
|
203
|
-
##
|
|
204
|
-
The `convert` stage
|
|
205
|
-
For
|
|
201
|
+
## Finetuned Model Usage
|
|
202
|
+
The `convert` stage exports the final model to [GGUF](https://github.com/ggml-org/ggml/blob/master/docs/gguf.md) format for local inference. The resulting file is saved at `outputs/convert/results/lora_model.gguf`.
|
|
203
|
+
For setup instructions with the VS Code extension [llama.vscode](https://github.com/ggml-org/llama.vscode), see the [inference-vscode](/docs/inference-vscode.md) guide.
|
|
206
204
|
|
|
207
205
|
|
|
208
|
-
##
|
|
206
|
+
## Docker Image
|
|
209
207
|
|
|
210
208
|
#### 1. Build the Docker Image
|
|
211
209
|
Build the image from the `Dockerfile`, tagging it as codefinetuner-image.
|
|
@@ -213,10 +211,8 @@ Build the image from the `Dockerfile`, tagging it as codefinetuner-image.
|
|
|
213
211
|
docker build -t codefinetuner-image .
|
|
214
212
|
```
|
|
215
213
|
#### 2. Prepare Data and Run the Container
|
|
216
|
-
To allow the container to access your data for fine-tuning, use a bind mount to link your host machine's `data` directory to the container.
|
|
217
|
-
|
|
218
|
-
- Put all files you want to use for fine-tuning inside the `data` directory. For `manual` mode, include `train`, `eval`, and `test` subdirectories containing your manually splitted files.
|
|
219
|
-
- Start the container with the bind mount, and open a Bash shell depending on your host machine hardware:
|
|
214
|
+
To allow the container to access your data for fine-tuning, use a bind mount to link your host machine's `data` directory to the container.
|
|
215
|
+
On your host machine (where you run Docker), create a folder named `data` if it does not already exist. Put all files you want to use for fine-tuning inside the `data` directory. For manual mode, include `train`, `eval`, and `test` subfolders with the split you want to use.
|
|
220
216
|
|
|
221
217
|
#### NVIDIA GPU (Recommended)
|
|
222
218
|
Use this command to enable CUDA support for `torch` and `bitsandbytes`. Requires the [NVIDIA Container Toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html) installed on the host machine.
|
|
@@ -227,8 +223,7 @@ docker run --gpus all -it --rm \
|
|
|
227
223
|
codefinetuner-image /bin/bash
|
|
228
224
|
```
|
|
229
225
|
#### CPU Only
|
|
230
|
-
|
|
231
|
-
Use this command if no compatible GPU is available. Note that fine-tuning will be significantly slower.
|
|
226
|
+
Use this if you do not have a compatible GPU. Fine-tuning will be much slower.
|
|
232
227
|
```bash
|
|
233
228
|
docker run -it --rm \
|
|
234
229
|
-v $(pwd)/data:/app/data \
|
|
@@ -236,21 +231,22 @@ docker run -it --rm \
|
|
|
236
231
|
```
|
|
237
232
|
|
|
238
233
|
## Tree-sitter Customization
|
|
239
|
-
Tree-sitter
|
|
240
|
-
|
|
241
|
-
- [Add Language Definitions](docs/tree-sitter-customization.md#add-new-language-block-definitions) - Define `block_types`/`subblock_types` in JSON.
|
|
242
|
-
- [Build Custom Parser](docs/tree-sitter-customization.md#build-custom-parser) - Compile from source (e.g., Mojo).
|
|
234
|
+
Tree-sitter turns source code into structural blocks used to generate FIM examples. Use this section to add new languages or build missing parsers.
|
|
243
235
|
|
|
236
|
+
- [Add Language Definitions](docs/tree-sitter-customization.md#add-new-language-block-definitions): define `block_types` and `subblock_types` in JSON.
|
|
237
|
+
- [Build Custom Parser](docs/tree-sitter-customization.md#build-custom-parser): compile a parser from source, for example for Mojo.
|
|
244
238
|
|
|
245
239
|
## Tests
|
|
240
|
+
Run the test suite with:
|
|
241
|
+
|
|
246
242
|
```bash
|
|
247
243
|
pytest
|
|
248
244
|
```
|
|
249
245
|
|
|
250
|
-
##
|
|
246
|
+
## Resources
|
|
251
247
|
- [Qwen2.5-Coder Technical Report](https://arxiv.org/pdf/2409.12186)
|
|
252
248
|
- [Structure-Aware Fill-in-the-Middle Pretraining for Code](https://arxiv.org/pdf/2506.00204)
|
|
253
|
-
- [
|
|
249
|
+
- [LoRA: Low-Rank Adaptation of Large Language Models](https://arxiv.org/pdf/2106.09685)
|
|
254
250
|
- [Efficient Training of Language Models to Fill in the Middle](https://arxiv.org/pdf/2207.14255)
|
|
255
251
|
- [From Output to Evaluation: Does Raw Instruction-Tuned Code LLMs Output Suffice for Fill-in-the-Middle Code Generation?](https://arxiv.org/pdf/2505.18789)
|
|
256
252
|
- [CodeBLEU: a Method for Automatic Evaluation of Code Synthesis](https://arxiv.org/pdf/2009.10297)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Configuration Reference
|
|
2
2
|
|
|
3
|
-
This document defines all mandatory and optional parameters in the YAML
|
|
3
|
+
This document defines all mandatory and optional parameters in the YAML config file. The pipeline uses YAML anchors (`&globals`) and aliases (`<<: *globals`) to propagate shared settings across the `preprocess`, `finetune`, `evaluate` and `convert` stages. See [`config/codefinetuner_config.yaml`](/config/codefinetuner_config.yaml) for an example file.
|
|
4
4
|
|
|
5
5
|
## Global Parameters (Mandatory)
|
|
6
6
|
*Shared across all stages.*
|
|
@@ -27,10 +27,10 @@ This document defines all mandatory and optional parameters in the YAML cofig fi
|
|
|
27
27
|
| `eval_ratio` | float | `0.1` | Validation set ratio (used in `auto` split). |
|
|
28
28
|
| `test_ratio` | float | `0.1` | Test set ratio (used in `auto` split). |
|
|
29
29
|
| `max_token_sequence_length` | int | `1024` | Maximum tokens per training example. |
|
|
30
|
-
| `max_code_blocks_ast_depth` | int | `2` | Tree
|
|
30
|
+
| `max_code_blocks_ast_depth` | int | `2` | Tree-Sitter AST depth limit for block extraction. Depth 1 is root, 2 includes child nodes (e.g. functions). |
|
|
31
31
|
| `min_middle_tokens_length` | int | `20` | Minimum tokens required in the FIM "middle" section of an example. |
|
|
32
32
|
| `max_middle_tokens_length` | int | `200` | Maximum tokens allowed in the FIM "middle" section of an example. |
|
|
33
|
-
| `fim_examples_per_subblock_ratio` | float | `1.0` | Number of FIM examples generated per subblock. 1.0 = all
|
|
33
|
+
| `fim_examples_per_subblock_ratio` | float | `1.0` | Number of FIM examples generated per subblock. 1.0 = all FIM examples of a subblock are extracted, 0.5 = only 50% are extracted |
|
|
34
34
|
| `tokenizer_batch_size` | int | `32` | Batch size for the tokenizer. The number of examples processed simultaneously by the tokenizer to improve throughput. |
|
|
35
35
|
| `raw_data_path` | str/null | `"data"` | Location of source code files used to generate the datasets. `null` defaults to `<workspace>/data`. |
|
|
36
36
|
| `tree_sitter_parser_path` | str/null | `null` | Path to custom `.so`/`.dylib` parser file. |
|
|
@@ -44,7 +44,7 @@ This document defines all mandatory and optional parameters in the YAML cofig fi
|
|
|
44
44
|
|-----------|------|---------|-------------|
|
|
45
45
|
| `model_attn_implementation` | str | `"sdpa"` | Attention backend. `flash_attention_2` is fastest (requires Ampere+ GPUs); `sdpa` is the efficient PyTorch default. |
|
|
46
46
|
| `lora_r` | int | `32` | Rank of adapter matrices. Controls parameter count and the complexity of learned patterns. |
|
|
47
|
-
| `lora_alpha` | int | `64` | Scaling factor for LoRA updates. Usually set to
|
|
47
|
+
| `lora_alpha` | int | `64` | Scaling factor for LoRA updates. Usually set to 2*`lora_r` to maintain numerical stability. |
|
|
48
48
|
| `lora_dropout` | float | `0.1` | Dropout probability for LoRA layers to prevent overfitting on specific code snippets. |
|
|
49
49
|
| `lora_bias` | str | `"none"` | Specifies if bias parameters are trained (`"none"`, `"all"`, `"lora_only"`). |
|
|
50
50
|
| `lora_target_modules` | list | `["q_proj", "v_proj", "k_proj", "o_proj", "gate_proj", "down_proj", "up_proj"]` | Model layers targeted for adaptation. Increasing the list improves performance but consumes more VRAM. |
|
|
@@ -66,7 +66,7 @@ This document defines all mandatory and optional parameters in the YAML cofig fi
|
|
|
66
66
|
| `trainer_save_strategy` | str | `"steps"` | Trigger for saving model checkpoints (`"steps"`, `"epoch"`, or `"no"`). |
|
|
67
67
|
| `trainer_save_steps` | int | `100` | Interval of training steps between model checkpoint saves. Only active if `trainer_save_strategy` is set to `"steps"` |
|
|
68
68
|
| `trainer_logging_strategy` | str | `"steps"` | Trigger for logging metrics (`"steps"`, `"epoch"`, or `"no"`). |
|
|
69
|
-
| `dataset_shuffle_buffer_size` | int | `50000` | Number of training examples to load into memory for randomly shuffling datasets since
|
|
69
|
+
| `dataset_shuffle_buffer_size` | int | `50000` | Number of training examples to load into memory for randomly shuffling datasets since streamable datasets are used. |
|
|
70
70
|
| `dataset_shuffle_seed` | int | `0` | Seed for shuffling datasets. |
|
|
71
71
|
|
|
72
72
|
## Evaluate Parameters (Optional)
|
|
@@ -80,9 +80,9 @@ This document defines all mandatory and optional parameters in the YAML cofig fi
|
|
|
80
80
|
| `benchmark_shuffle_seed` | int | `42` | Random seed ensuring that dataset shuffling is deterministic and reproducible. |
|
|
81
81
|
| `benchmark_use_existing_dataset` | bool | `false` | If `true`, the pipeline reuses a previously generated benchmark dataset file instead of creating a new one. |
|
|
82
82
|
| `generation_max_new_tokens` | int | `128` | Upper limit on the number of tokens the models are permitted to generate for each code completion. |
|
|
83
|
-
| `generation_do_sample` | bool | `false` | Enables probabilistic sampling. If `false`, the model uses greedy decoding (picking only the top token) and `generation_temperature` and `generation_top_p
|
|
84
|
-
| `generation_temperature` | float | `0.7` | Probability smoothing factor. Values < 1.0 make the model more confident; > 1.0 make it more random. Only active when `generation_do_sample` is
|
|
85
|
-
| `generation_top_p` | float | `0.95` | Cumulative probability threshold for nucleus sampling. Limits choices to the most likely tokens totaling 95% probability. Only active when `generation_do_sample` is
|
|
83
|
+
| `generation_do_sample` | bool | `false` | Enables probabilistic sampling. If `false`, the model uses greedy decoding (picking only the top token) and `generation_temperature` and `generation_top_p` are ignored.|
|
|
84
|
+
| `generation_temperature` | float | `0.7` | Probability smoothing factor. Values < 1.0 make the model more confident; > 1.0 make it more random. Only active when `generation_do_sample` is `true`.|
|
|
85
|
+
| `generation_top_p` | float | `0.95` | Cumulative probability threshold for nucleus sampling. Limits choices to the most likely tokens totaling 95% probability. Only active when `generation_do_sample` is `true`.|
|
|
86
86
|
| `codebleu_language` | str | `"c"` | Forces the CodeBLEU parser to use a specific language's grammar rules. |
|
|
87
87
|
| `codebleu_ngram_weight` | float | `0.25` | Standard token match. Measures how many exact words or symbols match the ground truth, treating every character (like `;` or `sum`) with equal importance. |
|
|
88
88
|
| `codebleu_weighted_ngram_weight` | float | `0.25` | Keyword-based scoring. Gives higher points for correctly predicting programming keywords (like `if`, `while`, `return`, `int`) than for standard symbols, ensuring the score reflects the model's grasp of the code's logic. |
|
|
@@ -92,6 +92,9 @@ This document defines all mandatory and optional parameters in the YAML cofig fi
|
|
|
92
92
|
| `sentencebleu_ngram_weight_2` | float | `0.25` | Short phrase accuracy. Weight of 2-token pairs (2-grams) in the final BLEU score calculation. |
|
|
93
93
|
| `sentencebleu_ngram_weight_3` | float | `0.25` | Medium phrase accuracy. Weight of 3-token chains (3-grams) in the final BLEU score calculation. |
|
|
94
94
|
| `sentencebleu_ngram_weight_4` | float | `0.25` | Long phrase accuracy. Weight of 4-token blocks (4-grams) in the final BLEU score calculation. |
|
|
95
|
-
| `line_match_number_of_lines` | int | `2` | Number of identical consecutive lines required between prediction and ground truth to
|
|
95
|
+
| `line_match_number_of_lines` | int | `2` | Number of identical consecutive lines required between prediction and ground truth to count as a line match. |
|
|
96
96
|
| `trainer_checkpoint` | str | `"last"` | Specifies the checkpoint folder to load. Use `last` for the latest or provide a specific directory name. |
|
|
97
|
-
| `plot_only` | bool | `false` | If `true`, skips the heavy inference and scoring steps to only generate charts from existing results. |
|
|
97
|
+
| `plot_only` | bool | `false` | If `true`, skips the heavy inference and scoring steps to only generate charts from existing results. |
|
|
98
|
+
|
|
99
|
+
## Convert Parameters (Optional)
|
|
100
|
+
*This stage currently has no configurable parameters.*
|
|
@@ -3,34 +3,10 @@
|
|
|
3
3
|
## How to Use the LoRA Fine-tuned Model
|
|
4
4
|
You can use the fine-tuned model with any code autocompletion tool that supports FIM (Fill-In-the-Middle) models. This section explains how to use the VS Code extension [llama.vscode](https://github.com/ggml-org/llama.vscode) to run the model locally on your machine.
|
|
5
5
|
|
|
6
|
-
### 1.
|
|
7
|
-
Convert the fine-tuned model to GGUF format and save it to the `outputs/export/results` directory.
|
|
8
|
-
|
|
9
|
-
Clone the [llama.cpp](https://github.com/ggml-org/llama.cpp) repository. Adjust the `codefinetuner_ws_path` variable to the absolute path of your `codefinetuner` workspace (see YAML config file -> `workspace_path` ) in the script below.
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
codefinetuner_ws_path="/path/to/your/codefinetuner_workspace"
|
|
13
|
-
|
|
14
|
-
git clone https://github.com/ggml-org/llama.cpp
|
|
15
|
-
cd llama.cpp
|
|
16
|
-
python -m venv .venv
|
|
17
|
-
source .venv/bin/activate
|
|
18
|
-
pip install -r requirements.txt
|
|
19
|
-
|
|
20
|
-
# Define and create the results directory
|
|
21
|
-
export_results_path="$codefinetuner_ws_path/outputs/export/results"
|
|
22
|
-
mkdir -p "$export_results_path"
|
|
23
|
-
|
|
24
|
-
python convert_hf_to_gguf.py \
|
|
25
|
-
"$codefinetuner_ws_path/outputs/finetune/lora_model" \
|
|
26
|
-
--outfile "$export_results_path/lora_model.gguf" \
|
|
27
|
-
--outtype bf16
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
### 2. Install llama.vscode
|
|
6
|
+
### 1. Install llama.vscode
|
|
31
7
|
Install the extension from the VS Code Marketplace: [Click here](https://marketplace.visualstudio.com/items?itemName=ggml-org.llama-vscode).
|
|
32
8
|
|
|
33
|
-
###
|
|
9
|
+
### 2. Ensure llama.cpp is Installed
|
|
34
10
|
Open the **llama-vscode** menu by clicking it in the status bar or pressing `Ctrl+Shift+M`, then select **Install/Upgrade llama.cpp**.
|
|
35
11
|
|
|
36
12
|
*Note: On macOS, you can also install via Homebrew:*
|
|
@@ -38,14 +14,14 @@ Open the **llama-vscode** menu by clicking it in the status bar or pressing `Ctr
|
|
|
38
14
|
brew install llama.cpp
|
|
39
15
|
```
|
|
40
16
|
|
|
41
|
-
###
|
|
17
|
+
### 3. Select the Fine-tuned Model in llama-vscode
|
|
42
18
|
In the llama-vscode menu:
|
|
43
19
|
-> "Completion models..."
|
|
44
20
|
-> "Add local completion model..."
|
|
45
21
|
-> Enter model name lora_model_gguf (or any name you prefer).
|
|
46
22
|
-> Enter the following command to start the model locally:
|
|
47
23
|
```bash
|
|
48
|
-
llama-server -m /path/to/your/codefinetuner_workspace/outputs/
|
|
24
|
+
llama-server -m /path/to/your/codefinetuner_workspace/outputs/convert/results/lora_model.gguf --port 8012
|
|
49
25
|
```
|
|
50
26
|
-> Confirm Endpoint ```http://127.0.0.1:8012```
|
|
51
27
|
-> No API Key required
|