.env.example
CHANGELOG.md
LICENSE
MANIFEST.in
MANUAL_COBRA.md
Makefile
README.md
clean.ps1
cobra.mod
cobra.toml
install.sh
pcobra.toml
pyproject.toml
run.sh
frontend/docs/arquitectura.rst
frontend/docs/avances.rst
frontend/docs/backends.rst
frontend/docs/benchmarking.rst
frontend/docs/cache.rst
frontend/docs/caracteristicas.rst
frontend/docs/cli.rst
frontend/docs/cobra_lock.rst
frontend/docs/cobrahub.rst
frontend/docs/como_contribuir.rst
frontend/docs/conf.py
frontend/docs/contenedores.rst
frontend/docs/design_patterns.rst
frontend/docs/ejemplos.rst
frontend/docs/ejemplos_avanzados.rst
frontend/docs/empaquetar.rst
frontend/docs/entorno_desarrollo.rst
frontend/docs/index.rst
frontend/docs/instalacion_pypi.rst
frontend/docs/jupyter.rst
frontend/docs/modo_seguro.rst
frontend/docs/modulos_nativos.rst
frontend/docs/optimizaciones.rst
frontend/docs/paquetes.rst
frontend/docs/plugin_dev.rst
frontend/docs/plugin_sdk.rst
frontend/docs/plugins.rst
frontend/docs/primeros_pasos.rst
frontend/docs/proximos_pasos.rst
frontend/docs/qualia.rst
frontend/docs/recursos_adicionales.rst
frontend/docs/referencia.rst
frontend/docs/rfc_plugins.rst
frontend/docs/sintaxis.rst
frontend/docs/validador.rst
frontend/docs/_autosummary/tests.hello.rst
frontend/docs/_autosummary/tests.make_all_bytes.rst
frontend/docs/_autosummary/tests.rst
frontend/docs/_autosummary/tests.tree_cmp.rst
frontend/docs/api/modules.rst
frontend/docs/api/src.cli.commands.rst
frontend/docs/api/src.cli.rst
frontend/docs/api/src.core.holobits.rst
frontend/docs/api/src.core.memoria.rst
frontend/docs/api/src.core.nativos.archivo.rst
frontend/docs/api/src.core.nativos.coleccion.rst
frontend/docs/api/src.core.nativos.numero.rst
frontend/docs/api/src.core.nativos.red.rst
frontend/docs/api/src.core.nativos.rst
frontend/docs/api/src.core.nativos.seguridad.rst
frontend/docs/api/src.core.nativos.sistema.rst
frontend/docs/api/src.core.nativos.texto.rst
frontend/docs/api/src.core.nativos.tiempo.rst
frontend/docs/api/src.core.rst
frontend/docs/api/src.core.semantic_validators.rst
frontend/docs/api/src.core.transpiler.js_nodes.rst
frontend/docs/api/src.core.transpiler.python_nodes.rst
frontend/docs/api/src.core.transpiler.rst
frontend/docs/api/src.rst
frontend/docs/api/src.tests.rst
frontend/docs/galeria/README.rst
frontend/docs/locale/en/LC_MESSAGES/.gitkeep
frontend/docs/locale/es/LC_MESSAGES/.gitkeep
frontend/docs/uml/arquitectura_general.puml
frontend/docs/uml/class_diagram.gv
frontend/docs/uml/flow_diagram.gv
notebooks/benchmarks_resultados.ipynb
notebooks/ejemplo_basico.ipynb
notebooks/ide_demo.ipynb
notebooks/casos_reales/analisis_datos.ipynb
notebooks/casos_reales/bioinformatica.ipynb
notebooks/casos_reales/inteligencia_artificial.ipynb
src/__init__.py
src/main.py
src/cobra/__init__.py
src/cobra/usar_loader.py
src/cobra/cli/__init__.py
src/cobra/cli/cli.py
src/cobra/cli/cobrahub_client.py
src/cobra/cli/i18n.py
src/cobra/cli/plugin.py
src/cobra/cli/plugin_interface.py
src/cobra/cli/plugin_loader.py
src/cobra/cli/plugin_registry.py
src/cobra/cli/commands/__init__.py
src/cobra/cli/commands/agix_cmd.py
src/cobra/cli/commands/base.py
src/cobra/cli/commands/bench_cmd.py
src/cobra/cli/commands/bench_transpilers_cmd.py
src/cobra/cli/commands/benchmarks2_cmd.py
src/cobra/cli/commands/benchmarks_cmd.py
src/cobra/cli/commands/benchthreads_cmd.py
src/cobra/cli/commands/cache_cmd.py
src/cobra/cli/commands/compile_cmd.py
src/cobra/cli/commands/container_cmd.py
src/cobra/cli/commands/crear_cmd.py
src/cobra/cli/commands/dependencias_cmd.py
src/cobra/cli/commands/docs_cmd.py
src/cobra/cli/commands/empaquetar_cmd.py
src/cobra/cli/commands/execute_cmd.py
src/cobra/cli/commands/flet_cmd.py
src/cobra/cli/commands/init_cmd.py
src/cobra/cli/commands/interactive_cmd.py
src/cobra/cli/commands/jupyter_cmd.py
src/cobra/cli/commands/modules_cmd.py
src/cobra/cli/commands/package_cmd.py
src/cobra/cli/commands/plugins_cmd.py
src/cobra/cli/commands/profile_cmd.py
src/cobra/cli/commands/qualia_cmd.py
src/cobra/cli/commands/transpilar_inverso_cmd.py
src/cobra/cli/commands/verify_cmd.py
src/cobra/cli/utils/__init__.py
src/cobra/cli/utils/messages.py
src/cobra/cli/utils/semver.py
src/cobra/lexico/__init__.py
src/cobra/lexico/lexer.py
src/cobra/macro/__init__.py
src/cobra/parser/__init__.py
src/cobra/parser/lark_parser.py
src/cobra/parser/parser.py
src/cobra/semantico/__init__.py
src/cobra/semantico/analizador.py
src/cobra/semantico/cobra_mod_schema.yaml
src/cobra/semantico/mod_validator.py
src/cobra/semantico/tabla.py
src/cobra/transpilers/__init__.py
src/cobra/transpilers/base.py
src/cobra/transpilers/import_helper.py
src/cobra/transpilers/module_map.py
src/cobra/transpilers/semantica.py
src/cobra/transpilers/reverse/__init__.py
src/cobra/transpilers/reverse/base.py
src/cobra/transpilers/reverse/from_asm.py
src/cobra/transpilers/reverse/from_c.py
src/cobra/transpilers/reverse/from_cobol.py
src/cobra/transpilers/reverse/from_cpp.py
src/cobra/transpilers/reverse/from_fortran.py
src/cobra/transpilers/reverse/from_go.py
src/cobra/transpilers/reverse/from_java.py
src/cobra/transpilers/reverse/from_js.py
src/cobra/transpilers/reverse/from_julia.py
src/cobra/transpilers/reverse/from_kotlin.py
src/cobra/transpilers/reverse/from_latex.py
src/cobra/transpilers/reverse/from_matlab.py
src/cobra/transpilers/reverse/from_mojo.py
src/cobra/transpilers/reverse/from_pascal.py
src/cobra/transpilers/reverse/from_perl.py
src/cobra/transpilers/reverse/from_php.py
src/cobra/transpilers/reverse/from_python.py
src/cobra/transpilers/reverse/from_r.py
src/cobra/transpilers/reverse/from_ruby.py
src/cobra/transpilers/reverse/from_rust.py
src/cobra/transpilers/reverse/from_swift.py
src/cobra/transpilers/reverse/from_visualbasic.py
src/cobra/transpilers/reverse/from_wasm.py
src/cobra/transpilers/reverse/tree_sitter_base.py
src/cobra/transpilers/transpiler/__init__.py
src/cobra/transpilers/transpiler/to_asm.py
src/cobra/transpilers/transpiler/to_c.py
src/cobra/transpilers/transpiler/to_cobol.py
src/cobra/transpilers/transpiler/to_cpp.py
src/cobra/transpilers/transpiler/to_fortran.py
src/cobra/transpilers/transpiler/to_go.py
src/cobra/transpilers/transpiler/to_java.py
src/cobra/transpilers/transpiler/to_js.py
src/cobra/transpilers/transpiler/to_julia.py
src/cobra/transpilers/transpiler/to_kotlin.py
src/cobra/transpilers/transpiler/to_latex.py
src/cobra/transpilers/transpiler/to_matlab.py
src/cobra/transpilers/transpiler/to_mojo.py
src/cobra/transpilers/transpiler/to_pascal.py
src/cobra/transpilers/transpiler/to_perl.py
src/cobra/transpilers/transpiler/to_php.py
src/cobra/transpilers/transpiler/to_python.py
src/cobra/transpilers/transpiler/to_r.py
src/cobra/transpilers/transpiler/to_ruby.py
src/cobra/transpilers/transpiler/to_rust.py
src/cobra/transpilers/transpiler/to_swift.py
src/cobra/transpilers/transpiler/to_visualbasic.py
src/cobra/transpilers/transpiler/to_wasm.py
src/cobra/transpilers/transpiler/asm_nodes/__init__.py
src/cobra/transpilers/transpiler/asm_nodes/asignacion.py
src/cobra/transpilers/transpiler/asm_nodes/atributo.py
src/cobra/transpilers/transpiler/asm_nodes/bucle_mientras.py
src/cobra/transpilers/transpiler/asm_nodes/clase.py
src/cobra/transpilers/transpiler/asm_nodes/condicional.py
src/cobra/transpilers/transpiler/asm_nodes/continuar.py
src/cobra/transpilers/transpiler/asm_nodes/diccionario.py
src/cobra/transpilers/transpiler/asm_nodes/for_.py
src/cobra/transpilers/transpiler/asm_nodes/funcion.py
src/cobra/transpilers/transpiler/asm_nodes/hilo.py
src/cobra/transpilers/transpiler/asm_nodes/holobit.py
src/cobra/transpilers/transpiler/asm_nodes/identificador.py
src/cobra/transpilers/transpiler/asm_nodes/importar.py
src/cobra/transpilers/transpiler/asm_nodes/imprimir.py
src/cobra/transpilers/transpiler/asm_nodes/instancia.py
src/cobra/transpilers/transpiler/asm_nodes/lista.py
src/cobra/transpilers/transpiler/asm_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/asm_nodes/llamada_metodo.py
src/cobra/transpilers/transpiler/asm_nodes/metodo.py
src/cobra/transpilers/transpiler/asm_nodes/operacion_binaria.py
src/cobra/transpilers/transpiler/asm_nodes/operacion_unaria.py
src/cobra/transpilers/transpiler/asm_nodes/para.py
src/cobra/transpilers/transpiler/asm_nodes/pasar.py
src/cobra/transpilers/transpiler/asm_nodes/retorno.py
src/cobra/transpilers/transpiler/asm_nodes/romper.py
src/cobra/transpilers/transpiler/asm_nodes/throw.py
src/cobra/transpilers/transpiler/asm_nodes/try_catch.py
src/cobra/transpilers/transpiler/asm_nodes/usar.py
src/cobra/transpilers/transpiler/asm_nodes/valor.py
src/cobra/transpilers/transpiler/cobol_nodes/__init__.py
src/cobra/transpilers/transpiler/cobol_nodes/asignacion.py
src/cobra/transpilers/transpiler/cobol_nodes/funcion.py
src/cobra/transpilers/transpiler/cobol_nodes/imprimir.py
src/cobra/transpilers/transpiler/cobol_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/cpp_nodes/__init__.py
src/cobra/transpilers/transpiler/cpp_nodes/asignacion.py
src/cobra/transpilers/transpiler/cpp_nodes/bucle_mientras.py
src/cobra/transpilers/transpiler/cpp_nodes/clase.py
src/cobra/transpilers/transpiler/cpp_nodes/condicional.py
src/cobra/transpilers/transpiler/cpp_nodes/continuar.py
src/cobra/transpilers/transpiler/cpp_nodes/funcion.py
src/cobra/transpilers/transpiler/cpp_nodes/holobit.py
src/cobra/transpilers/transpiler/cpp_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/cpp_nodes/metodo.py
src/cobra/transpilers/transpiler/cpp_nodes/pasar.py
src/cobra/transpilers/transpiler/cpp_nodes/romper.py
src/cobra/transpilers/transpiler/cpp_nodes/switch.py
src/cobra/transpilers/transpiler/cpp_nodes/yield_.py
src/cobra/transpilers/transpiler/fortran_nodes/__init__.py
src/cobra/transpilers/transpiler/fortran_nodes/asignacion.py
src/cobra/transpilers/transpiler/fortran_nodes/funcion.py
src/cobra/transpilers/transpiler/fortran_nodes/imprimir.py
src/cobra/transpilers/transpiler/fortran_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/js_nodes/__init__.py
src/cobra/transpilers/transpiler/js_nodes/asignacion.py
src/cobra/transpilers/transpiler/js_nodes/atributo.py
src/cobra/transpilers/transpiler/js_nodes/bucle_mientras.py
src/cobra/transpilers/transpiler/js_nodes/clase.py
src/cobra/transpilers/transpiler/js_nodes/condicional.py
src/cobra/transpilers/transpiler/js_nodes/continuar.py
src/cobra/transpilers/transpiler/js_nodes/decorador.py
src/cobra/transpilers/transpiler/js_nodes/diccionario.py
src/cobra/transpilers/transpiler/js_nodes/elemento.py
src/cobra/transpilers/transpiler/js_nodes/esperar.py
src/cobra/transpilers/transpiler/js_nodes/exportar.py
src/cobra/transpilers/transpiler/js_nodes/for_.py
src/cobra/transpilers/transpiler/js_nodes/funcion.py
src/cobra/transpilers/transpiler/js_nodes/hilo.py
src/cobra/transpilers/transpiler/js_nodes/holobit.py
src/cobra/transpilers/transpiler/js_nodes/identificador.py
src/cobra/transpilers/transpiler/js_nodes/importar.py
src/cobra/transpilers/transpiler/js_nodes/imprimir.py
src/cobra/transpilers/transpiler/js_nodes/instancia.py
src/cobra/transpilers/transpiler/js_nodes/lista.py
src/cobra/transpilers/transpiler/js_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/js_nodes/llamada_metodo.py
src/cobra/transpilers/transpiler/js_nodes/metodo.py
src/cobra/transpilers/transpiler/js_nodes/operacion_binaria.py
src/cobra/transpilers/transpiler/js_nodes/operacion_unaria.py
src/cobra/transpilers/transpiler/js_nodes/para.py
src/cobra/transpilers/transpiler/js_nodes/pasar.py
src/cobra/transpilers/transpiler/js_nodes/retorno.py
src/cobra/transpilers/transpiler/js_nodes/romper.py
src/cobra/transpilers/transpiler/js_nodes/switch.py
src/cobra/transpilers/transpiler/js_nodes/throw.py
src/cobra/transpilers/transpiler/js_nodes/try_catch.py
src/cobra/transpilers/transpiler/js_nodes/valor.py
src/cobra/transpilers/transpiler/js_nodes/yield_.py
src/cobra/transpilers/transpiler/latex_nodes/__init__.py
src/cobra/transpilers/transpiler/latex_nodes/asignacion.py
src/cobra/transpilers/transpiler/latex_nodes/funcion.py
src/cobra/transpilers/transpiler/latex_nodes/imprimir.py
src/cobra/transpilers/transpiler/latex_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/matlab_nodes/__init__.py
src/cobra/transpilers/transpiler/matlab_nodes/asignacion.py
src/cobra/transpilers/transpiler/matlab_nodes/funcion.py
src/cobra/transpilers/transpiler/matlab_nodes/imprimir.py
src/cobra/transpilers/transpiler/matlab_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/pascal_nodes/__init__.py
src/cobra/transpilers/transpiler/pascal_nodes/asignacion.py
src/cobra/transpilers/transpiler/pascal_nodes/funcion.py
src/cobra/transpilers/transpiler/pascal_nodes/imprimir.py
src/cobra/transpilers/transpiler/pascal_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/python_nodes/__init__.py
src/cobra/transpilers/transpiler/python_nodes/asignacion.py
src/cobra/transpilers/transpiler/python_nodes/atributo.py
src/cobra/transpilers/transpiler/python_nodes/bucle_mientras.py
src/cobra/transpilers/transpiler/python_nodes/clase.py
src/cobra/transpilers/transpiler/python_nodes/condicional.py
src/cobra/transpilers/transpiler/python_nodes/continuar.py
src/cobra/transpilers/transpiler/python_nodes/decorador.py
src/cobra/transpilers/transpiler/python_nodes/diccionario.py
src/cobra/transpilers/transpiler/python_nodes/esperar.py
src/cobra/transpilers/transpiler/python_nodes/for_.py
src/cobra/transpilers/transpiler/python_nodes/funcion.py
src/cobra/transpilers/transpiler/python_nodes/hilo.py
src/cobra/transpilers/transpiler/python_nodes/holobit.py
src/cobra/transpilers/transpiler/python_nodes/identificador.py
src/cobra/transpilers/transpiler/python_nodes/importar.py
src/cobra/transpilers/transpiler/python_nodes/imprimir.py
src/cobra/transpilers/transpiler/python_nodes/instancia.py
src/cobra/transpilers/transpiler/python_nodes/lista.py
src/cobra/transpilers/transpiler/python_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/python_nodes/llamada_metodo.py
src/cobra/transpilers/transpiler/python_nodes/metodo.py
src/cobra/transpilers/transpiler/python_nodes/operacion_binaria.py
src/cobra/transpilers/transpiler/python_nodes/operacion_unaria.py
src/cobra/transpilers/transpiler/python_nodes/para.py
src/cobra/transpilers/transpiler/python_nodes/pasar.py
src/cobra/transpilers/transpiler/python_nodes/retorno.py
src/cobra/transpilers/transpiler/python_nodes/romper.py
src/cobra/transpilers/transpiler/python_nodes/switch.py
src/cobra/transpilers/transpiler/python_nodes/throw.py
src/cobra/transpilers/transpiler/python_nodes/try_catch.py
src/cobra/transpilers/transpiler/python_nodes/usar.py
src/cobra/transpilers/transpiler/python_nodes/valor.py
src/cobra/transpilers/transpiler/python_nodes/yield_.py
src/cobra/transpilers/transpiler/rust_nodes/__init__.py
src/cobra/transpilers/transpiler/rust_nodes/asignacion.py
src/cobra/transpilers/transpiler/rust_nodes/bucle_mientras.py
src/cobra/transpilers/transpiler/rust_nodes/clase.py
src/cobra/transpilers/transpiler/rust_nodes/condicional.py
src/cobra/transpilers/transpiler/rust_nodes/continuar.py
src/cobra/transpilers/transpiler/rust_nodes/funcion.py
src/cobra/transpilers/transpiler/rust_nodes/holobit.py
src/cobra/transpilers/transpiler/rust_nodes/llamada_funcion.py
src/cobra/transpilers/transpiler/rust_nodes/metodo.py
src/cobra/transpilers/transpiler/rust_nodes/option.py
src/cobra/transpilers/transpiler/rust_nodes/pasar.py
src/cobra/transpilers/transpiler/rust_nodes/romper.py
src/cobra/transpilers/transpiler/rust_nodes/switch.py
src/cobra/transpilers/transpiler/rust_nodes/throw.py
src/cobra/transpilers/transpiler/rust_nodes/try_catch.py
src/cobra/transpilers/transpiler/rust_nodes/yield_.py
src/cobra_lenguaje.egg-info/PKG-INFO
src/cobra_lenguaje.egg-info/SOURCES.txt
src/cobra_lenguaje.egg-info/dependency_links.txt
src/cobra_lenguaje.egg-info/entry_points.txt
src/cobra_lenguaje.egg-info/requires.txt
src/cobra_lenguaje.egg-info/top_level.txt
src/core/__init__.py
src/core/ast_cache.py
src/core/ast_nodes.py
src/core/cobra_config.py
src/core/ctypes_bridge.py
src/core/interpreter.py
src/core/main.py
src/core/pcobra_config.py
src/core/performance.py
src/core/pybind_bridge.py
src/core/qualia_bridge.py
src/core/qualia_knowledge.py
src/core/resource_limits.py
src/core/rust_bridge.py
src/core/sandbox.py
src/core/semantic_validator.py
src/core/type_utils.py
src/core/visitor.py
src/core/holobits/__init__.py
src/core/holobits/graficar.py
src/core/holobits/holobit.py
src/core/holobits/proyection.py
src/core/holobits/transformacion.py
src/core/memoria/__init__.py
src/core/memoria/estrategia_memoria.py
src/core/memoria/gestor_memoria.py
src/core/nativos/__init__.py
src/core/nativos/estructuras.py
src/core/nativos/io.py
src/core/nativos/matematicas.py
src/core/optimizations/__init__.py
src/core/optimizations/common_subexpr.py
src/core/optimizations/constant_folder.py
src/core/optimizations/dead_code.py
src/core/optimizations/inliner.py
src/core/semantic_validators/__init__.py
src/core/semantic_validators/auditoria.py
src/core/semantic_validators/base.py
src/core/semantic_validators/fs_access.py
src/core/semantic_validators/import_seguro.py
src/core/semantic_validators/primitiva_peligrosa.py
src/core/semantic_validators/reflexion_segura.py
src/corelibs/__init__.py
src/corelibs/archivo.py
src/corelibs/coleccion.py
src/corelibs/numero.py
src/corelibs/red.py
src/corelibs/seguridad.py
src/corelibs/sistema.py
src/corelibs/texto.py
src/corelibs/tiempo.py
src/gui/__init__.py
src/gui/app.py
src/gui/idle.py
src/ia/__init__.py
src/ia/analizador_agix.py
src/jupyter_kernel/__init__.py
src/lsp/__init__.py
src/lsp/cobra_plugin.py
src/lsp/server.py
src/standard_library/__init__.py
src/standard_library/archivo.py
src/standard_library/fecha.py
src/standard_library/lista.py
src/standard_library/logica.py
src/standard_library/util.py
src/tests/__init__.py
src/tests/conftest.py
src/tests/data/expected_examples/clase_metodo_atributo.txt
src/tests/data/expected_examples/funciones_principales.txt
src/tests/data/expected_examples/avanzados/clases/estudiante.txt
src/tests/data/expected_examples/avanzados/clases/main.txt
src/tests/data/expected_examples/avanzados/clases/persona.txt
src/tests/data/expected_examples/avanzados/funciones/factorial_recursivo.txt
src/tests/data/expected_examples/avanzados/funciones/utilidades.txt
src/tests/data/expected_examples/extra/async_await.txt
src/tests/data/expected_examples/extra/suma_matrices.txt
src/tests/data/expected_examples/tutorial_basico/hola_mundo.txt
src/tests/fuzz/__init__.py
src/tests/fuzz/test_fuzz_parser.py
src/tests/integration/__init__.py
src/tests/integration/empty.toml
src/tests/integration/test_cli.py
src/tests/integration/test_cli_integration.py
src/tests/integration/test_cross_backend_output.py
src/tests/integration/test_docs_generation.py
src/tests/integration/test_end_to_end.py
src/tests/integration/test_execute_container.py
src/tests/integration/test_kernel_transpiler.py
src/tests/integration/test_notebooks_execution.py
src/tests/integration/test_pyinstaller_script.py
src/tests/integration/test_reverse_transpile_chain.py
src/tests/integration/test_transpilador_syntax.py
src/tests/integration/test_transpiladores.py
src/tests/integration/test_transpile_semantics.py
src/tests/integration/test_transpilers_generation.py
src/tests/integration/usercustomize.py
src/tests/unit/__init__.py
src/tests/unit/lexer_test_casos_edge.py
src/tests/unit/parser_error_handling.py
src/tests/unit/parser_recursion_types.py
src/tests/unit/parser_test_constructs.py
src/tests/unit/suite_cli.py
src/tests/unit/suite_core.py
src/tests/unit/suite_transpiladores.py
src/tests/unit/test_analizador_agix.py
src/tests/unit/test_archivo.py
src/tests/unit/test_ast_cache.py
src/tests/unit/test_ast_limit.py
src/tests/unit/test_async.py
src/tests/unit/test_auditoria_validator.py
src/tests/unit/test_bench_cmd.py
src/tests/unit/test_bench_transpilers_cmd.py
src/tests/unit/test_benchmark_execution.py
src/tests/unit/test_benchmarks2_cmd.py
src/tests/unit/test_benchthreads_cmd.py
src/tests/unit/test_cli.py
src/tests/unit/test_cli2.py
src/tests/unit/test_cli_agix.py
src/tests/unit/test_cli_agix_missing_dep.py
src/tests/unit/test_cli_cache_cmd.py
src/tests/unit/test_cli_cobrahub.py
src/tests/unit/test_cli_commands_extra.py
src/tests/unit/test_cli_compile_parallel.py
src/tests/unit/test_cli_container.py
src/tests/unit/test_cli_dependencias.py
src/tests/unit/test_cli_docs.py
src/tests/unit/test_cli_empaquetar.py
src/tests/unit/test_cli_error_messages.py
src/tests/unit/test_cli_exit_codes.py
src/tests/unit/test_cli_gui.py
src/tests/unit/test_cli_init.py
src/tests/unit/test_cli_interactive_cmd.py
src/tests/unit/test_cli_jupyter.py
src/tests/unit/test_cli_paquete.py
src/tests/unit/test_cli_plugins.py
src/tests/unit/test_cli_plugins_cmd.py
src/tests/unit/test_cli_profile.py
src/tests/unit/test_cli_qualia_cmd.py
src/tests/unit/test_cli_run_examples.py
src/tests/unit/test_cli_sandbox_docker.py
src/tests/unit/test_cli_sandbox_mode.py
src/tests/unit/test_cli_secure_validators.py
src/tests/unit/test_cli_transpilar_inverso_cmd.py
src/tests/unit/test_codeql_eval_exec.py
src/tests/unit/test_codeql_triggers.py
src/tests/unit/test_compile_stress.py
src/tests/unit/test_core_main.py
src/tests/unit/test_corelibs.py
src/tests/unit/test_corelibs_sistema.py
src/tests/unit/test_ctypes_bridge.py
src/tests/unit/test_custom_validators.py
src/tests/unit/test_dead_code_integration.py
src/tests/unit/test_decoradores_yield.py
src/tests/unit/test_error_handling.py
src/tests/unit/test_fecha.py
src/tests/unit/test_fs_access_validator.py
src/tests/unit/test_generadores.py
src/tests/unit/test_gestor_memoria.py
src/tests/unit/test_gestor_memoria2.py
src/tests/unit/test_hilos.py
src/tests/unit/test_holobit_generation.py
src/tests/unit/test_holobit_sdk_integration.py
src/tests/unit/test_holobit_transformacion_extra.py
src/tests/unit/test_import.py
src/tests/unit/test_import_seguro_validator.py
src/tests/unit/test_imports_alias_clase.py
src/tests/unit/test_inlining_transpilers.py
src/tests/unit/test_integracion_transpiladores.py
src/tests/unit/test_interpreter.py
src/tests/unit/test_interpreter_atributo.py
src/tests/unit/test_interpreter_concurrency.py
src/tests/unit/test_interpreter_inferencia.py
src/tests/unit/test_interpreter_memoria.py
src/tests/unit/test_interpreter_objects.py
src/tests/unit/test_lexer.py
src/tests/unit/test_lexer2.py
src/tests/unit/test_lexer_additional_cases.py
src/tests/unit/test_lexer_basics.py
src/tests/unit/test_lexer_errors.py
src/tests/unit/test_lexer_errors_extra.py
src/tests/unit/test_lexer_metodo_atributo.py
src/tests/unit/test_lista.py
src/tests/unit/test_logica.py
src/tests/unit/test_lsp_server.py
src/tests/unit/test_macros.py
src/tests/unit/test_md2cobra_plugin.py
src/tests/unit/test_metodo_atributo.py
src/tests/unit/test_mod_validator.py
src/tests/unit/test_module_map.py
src/tests/unit/test_nativos_io.py
src/tests/unit/test_node_visitor.py
src/tests/unit/test_nodo_macro.py
src/tests/unit/test_nuevos_tokens.py
src/tests/unit/test_operadores.py
src/tests/unit/test_optimizations.py
src/tests/unit/test_parser.py
src/tests/unit/test_parser2.py
src/tests/unit/test_parser3.py
src/tests/unit/test_parser4.py
src/tests/unit/test_parser5.py
src/tests/unit/test_parser_ast.py
src/tests/unit/test_parser_clase.py
src/tests/unit/test_parser_condicional_anidado.py
src/tests/unit/test_parser_decorador.py
src/tests/unit/test_parser_del_global.py
src/tests/unit/test_parser_errors_extra.py
src/tests/unit/test_parser_factories.py
src/tests/unit/test_parser_holobit.py
src/tests/unit/test_parser_inferencia.py
src/tests/unit/test_parser_nuevos.py
src/tests/unit/test_parser_switch.py
src/tests/unit/test_pasar.py
src/tests/unit/test_pcobra_config.py
src/tests/unit/test_pcobra_module_map.py
src/tests/unit/test_performance.py
src/tests/unit/test_plugin_loader.py
src/tests/unit/test_pybind_bridge_invalid_loader.py
src/tests/unit/test_qualia_bridge.py
src/tests/unit/test_reflexion_validator.py
src/tests/unit/test_reserved_identifiers.py
src/tests/unit/test_resource_limits.py
src/tests/unit/test_restricted_exec.py
src/tests/unit/test_retornos.py
src/tests/unit/test_reverse_ast.py
src/tests/unit/test_romper_continuar.py
src/tests/unit/test_safe_mode.py
src/tests/unit/test_safe_mode_imports.py
src/tests/unit/test_sandbox.py
src/tests/unit/test_sandbox_js.py
src/tests/unit/test_sandbox_restrictions.py
src/tests/unit/test_semantic_validator.py
src/tests/unit/test_semantica_transpiladores.py
src/tests/unit/test_semantico.py
src/tests/unit/test_to_asm.py
src/tests/unit/test_to_c.py
src/tests/unit/test_to_cobol.py
src/tests/unit/test_to_cpp.py
src/tests/unit/test_to_fortran.py
src/tests/unit/test_to_go.py
src/tests/unit/test_to_java.py
src/tests/unit/test_to_js.py
src/tests/unit/test_to_js2.py
src/tests/unit/test_to_js3.py
src/tests/unit/test_to_js4.py
src/tests/unit/test_to_js_objects.py
src/tests/unit/test_to_julia.py
src/tests/unit/test_to_kotlin.py
src/tests/unit/test_to_latex.py
src/tests/unit/test_to_matlab.py
src/tests/unit/test_to_mojo.py
src/tests/unit/test_to_pascal.py
src/tests/unit/test_to_perl.py
src/tests/unit/test_to_php.py
src/tests/unit/test_to_python.py
src/tests/unit/test_to_python2.py
src/tests/unit/test_to_python3.py
src/tests/unit/test_to_python4.py
src/tests/unit/test_to_python_extras.py
src/tests/unit/test_to_python_nuevos.py
src/tests/unit/test_to_python_objects.py
src/tests/unit/test_to_r.py
src/tests/unit/test_to_ruby.py
src/tests/unit/test_to_rust.py
src/tests/unit/test_to_swift.py
src/tests/unit/test_to_visualbasic.py
src/tests/unit/test_to_wasm.py
src/tests/unit/test_token_cache.py
src/tests/unit/test_transpiladores_incompletos.py
src/tests/unit/test_transpile_python.py
src/tests/unit/test_transpile_rust_go.py
src/tests/unit/test_transpiler_operations_extra.py
src/tests/unit/test_try_catch.py
src/tests/unit/test_type_checks.py
src/tests/unit/test_unicode_comments.py
src/tests/unit/test_unicode_identifiers.py
src/tests/unit/test_unicode_identifiers_extra.py
src/tests/unit/test_usar.py
src/tests/unit/test_usar_loader_site_packages.py
src/tests/unit/test_usar_loader_stdlib.py
src/tests/unit/test_util.py
src/tests/unit/test_validar_dependencias.py
src/tests/unit/test_validator_optimization.py