├── .coverage ├── .env.test ├── .github ├── dependabot.yml └── workflows │ ├── microsoft.yml │ └── unix.yml ├── .gitignore ├── .mcp_server.pid ├── LICENSE ├── Makefile ├── README.md ├── coverage └── lcov.info ├── nodemon.json ├── pyproject.toml ├── pytest.ini ├── tests ├── .env.test ├── __init__.py ├── build_absurdly_huge_jsonl.py ├── dot_dot │ ├── __init__.py │ ├── my_test_file.py │ └── nested_dir │ │ ├── .env.test │ │ ├── .hypothesis │ │ └── unicode_data │ │ │ └── 13.0.0 │ │ │ └── charmap.json.gz │ │ ├── __init__.py │ │ ├── pytest.ini │ │ └── test_tp_dotdot.py ├── folder_with_evil_logging │ └── logging.py ├── more_languages │ ├── group1 │ │ ├── CUSTOMER-INVOICE.CBL │ │ ├── JavaTest.java │ │ ├── JuliaTest.jl │ │ ├── KotlinTest.kt │ │ ├── LuaTest.lua │ │ ├── ObjectiveCTest.m │ │ ├── OcamlTest.ml │ │ ├── addamt.cobol │ │ ├── lesson.cbl │ │ ├── test.js │ │ └── test.ts │ ├── group2 │ │ ├── PerlTest.pl │ │ ├── PhpTest.php │ │ ├── PowershellTest.ps1 │ │ ├── ScalaTest.scala │ │ ├── apl_test.apl │ │ ├── c_test.c │ │ ├── go_test.go │ │ └── test.csv │ ├── group3 │ │ ├── bash_test.sh │ │ ├── cpp_test.cpp │ │ ├── csharp_test.cs │ │ ├── hallucination.tex │ │ ├── ruby_test.rb │ │ ├── swift_test.swift │ │ ├── test.capnp │ │ ├── test.graphql │ │ ├── test.lean │ │ ├── test.proto │ │ ├── test.sqlite │ │ ├── test_Cargo.toml │ │ ├── test_json_rpc_2_0.json │ │ ├── test_openapi.yaml │ │ ├── test_openrpc.json │ │ └── test_pyproject.toml │ ├── group4 │ │ ├── RTest.R │ │ ├── erl_test.erl │ │ ├── haskell_test.hs │ │ ├── mathematica_test.nb │ │ ├── matlab_test.m │ │ ├── rust_test.rs │ │ ├── test.zig │ │ ├── test_fsharp.fs │ │ ├── test_tcl_tk.tcl │ │ └── tf_test.tf │ ├── group5 │ │ ├── Makefile │ │ ├── ansible_test.yml │ │ ├── app-routing.module.ts │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── checkbox_test.md │ │ ├── checkbox_test.txt │ │ ├── environment.test.ts │ │ ├── hello_world.pyi │ │ ├── k8s_test.yaml │ │ ├── requirements_test.txt │ │ ├── rust_todo_test.rs │ │ ├── sql_test.sql │ │ ├── standard-app-routing.module.ts │ │ ├── test.env │ │ ├── testJsonSchema.json │ │ ├── testPackage.json │ │ └── tickets.component.ts │ ├── group6 │ │ ├── Microsoft.PowerShell_profile.ps1 │ │ ├── catastrophic.c │ │ ├── cpp_examples_impl.cc │ │ ├── cpp_examples_impl.cu │ │ ├── cpp_examples_impl.h │ │ ├── edge_case.hpp │ │ ├── fractal.thy │ │ ├── python_complex_class.py │ │ ├── ramda__cloneRegExp.js │ │ ├── ramda_prop.js │ │ ├── tensorflow_flags.h │ │ ├── test.f │ │ ├── torch.rst │ │ └── yc.html │ ├── group7 │ │ ├── absurdly_huge.jsonl │ │ ├── angular_crud.ts │ │ ├── structure.py │ │ ├── test.metal │ │ └── test.wgsl │ ├── group_lisp │ │ ├── LispTest.lisp │ │ ├── clojure_test.clj │ │ ├── racket_struct.rkt │ │ └── test_scheme.scm │ └── group_todo │ │ ├── AAPLShaders.metal │ │ ├── crystal_test.cr │ │ ├── dart_test.dart │ │ ├── elixir_test.exs │ │ ├── forward.frag │ │ ├── forward.vert │ │ ├── nodemon.json │ │ ├── sas_test.sas │ │ ├── testTypings.d.ts │ │ ├── test_setup_py.test │ │ ├── vba_test.bas │ │ └── wgsl_test.wgsl ├── path_to_test │ ├── class_method_type.py │ ├── empty.py │ ├── file.md │ ├── file.py │ ├── file.txt │ └── version.py ├── pytest.ini ├── readme_updates │ ├── .gitkeep │ ├── medium_README_source.md │ └── mini_README_source.md ├── tensorflow_expectation.py ├── test_cli.py ├── test_deploy.py ├── test_dotenv.py ├── test_e2e.py ├── test_engine.py ├── test_more_language_units.py ├── test_programs.py ├── test_units.py ├── test_web.py └── version_increments │ └── test_source_version.py ├── tree_plus_cli.py ├── tree_plus_programs ├── hello_tree_plus.py ├── rewrite.py ├── stub_tests.py └── test_stub_tests.py └── tree_plus_src ├── __init__.py ├── count_tokens_lines.py ├── debug.py ├── deploy.py ├── engine.py ├── ignore.py ├── isabelle_symbols.py ├── parse_file.py ├── scripts └── alias_tree_plus.sh ├── version.py └── web.py /.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/.coverage -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- 1 | DEBUG_TREE_PLUS=1 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/microsoft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/.github/workflows/microsoft.yml -------------------------------------------------------------------------------- /.github/workflows/unix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/.github/workflows/unix.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.mcp_server.pid: -------------------------------------------------------------------------------- 1 | 4104940 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/README.md -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/nodemon.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/pytest.ini -------------------------------------------------------------------------------- /tests/.env.test: -------------------------------------------------------------------------------- 1 | DEBUG_TREE_PLUS=1 -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/build_absurdly_huge_jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/build_absurdly_huge_jsonl.py -------------------------------------------------------------------------------- /tests/dot_dot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dot_dot/my_test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/dot_dot/my_test_file.py -------------------------------------------------------------------------------- /tests/dot_dot/nested_dir/.env.test: -------------------------------------------------------------------------------- 1 | DEBUG_TREE_PLUS=1 -------------------------------------------------------------------------------- /tests/dot_dot/nested_dir/.hypothesis/unicode_data/13.0.0/charmap.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/dot_dot/nested_dir/.hypothesis/unicode_data/13.0.0/charmap.json.gz -------------------------------------------------------------------------------- /tests/dot_dot/nested_dir/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dot_dot/nested_dir/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/dot_dot/nested_dir/pytest.ini -------------------------------------------------------------------------------- /tests/dot_dot/nested_dir/test_tp_dotdot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/dot_dot/nested_dir/test_tp_dotdot.py -------------------------------------------------------------------------------- /tests/folder_with_evil_logging/logging.py: -------------------------------------------------------------------------------- 1 | print("muhaha dynamic imports are so smart") -------------------------------------------------------------------------------- /tests/more_languages/group1/CUSTOMER-INVOICE.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/CUSTOMER-INVOICE.CBL -------------------------------------------------------------------------------- /tests/more_languages/group1/JavaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/JavaTest.java -------------------------------------------------------------------------------- /tests/more_languages/group1/JuliaTest.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/JuliaTest.jl -------------------------------------------------------------------------------- /tests/more_languages/group1/KotlinTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/KotlinTest.kt -------------------------------------------------------------------------------- /tests/more_languages/group1/LuaTest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/LuaTest.lua -------------------------------------------------------------------------------- /tests/more_languages/group1/ObjectiveCTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/ObjectiveCTest.m -------------------------------------------------------------------------------- /tests/more_languages/group1/OcamlTest.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/OcamlTest.ml -------------------------------------------------------------------------------- /tests/more_languages/group1/addamt.cobol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/addamt.cobol -------------------------------------------------------------------------------- /tests/more_languages/group1/lesson.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/lesson.cbl -------------------------------------------------------------------------------- /tests/more_languages/group1/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/test.js -------------------------------------------------------------------------------- /tests/more_languages/group1/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group1/test.ts -------------------------------------------------------------------------------- /tests/more_languages/group2/PerlTest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group2/PerlTest.pl -------------------------------------------------------------------------------- /tests/more_languages/group2/PhpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group2/PhpTest.php -------------------------------------------------------------------------------- /tests/more_languages/group2/PowershellTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group2/PowershellTest.ps1 -------------------------------------------------------------------------------- /tests/more_languages/group2/ScalaTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group2/ScalaTest.scala -------------------------------------------------------------------------------- /tests/more_languages/group2/apl_test.apl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group2/apl_test.apl -------------------------------------------------------------------------------- /tests/more_languages/group2/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group2/c_test.c -------------------------------------------------------------------------------- /tests/more_languages/group2/go_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group2/go_test.go -------------------------------------------------------------------------------- /tests/more_languages/group2/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group2/test.csv -------------------------------------------------------------------------------- /tests/more_languages/group3/bash_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/bash_test.sh -------------------------------------------------------------------------------- /tests/more_languages/group3/cpp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/cpp_test.cpp -------------------------------------------------------------------------------- /tests/more_languages/group3/csharp_test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/csharp_test.cs -------------------------------------------------------------------------------- /tests/more_languages/group3/hallucination.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/hallucination.tex -------------------------------------------------------------------------------- /tests/more_languages/group3/ruby_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/ruby_test.rb -------------------------------------------------------------------------------- /tests/more_languages/group3/swift_test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/swift_test.swift -------------------------------------------------------------------------------- /tests/more_languages/group3/test.capnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test.capnp -------------------------------------------------------------------------------- /tests/more_languages/group3/test.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test.graphql -------------------------------------------------------------------------------- /tests/more_languages/group3/test.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test.lean -------------------------------------------------------------------------------- /tests/more_languages/group3/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test.proto -------------------------------------------------------------------------------- /tests/more_languages/group3/test.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test.sqlite -------------------------------------------------------------------------------- /tests/more_languages/group3/test_Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test_Cargo.toml -------------------------------------------------------------------------------- /tests/more_languages/group3/test_json_rpc_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test_json_rpc_2_0.json -------------------------------------------------------------------------------- /tests/more_languages/group3/test_openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test_openapi.yaml -------------------------------------------------------------------------------- /tests/more_languages/group3/test_openrpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test_openrpc.json -------------------------------------------------------------------------------- /tests/more_languages/group3/test_pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group3/test_pyproject.toml -------------------------------------------------------------------------------- /tests/more_languages/group4/RTest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/RTest.R -------------------------------------------------------------------------------- /tests/more_languages/group4/erl_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/erl_test.erl -------------------------------------------------------------------------------- /tests/more_languages/group4/haskell_test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/haskell_test.hs -------------------------------------------------------------------------------- /tests/more_languages/group4/mathematica_test.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/mathematica_test.nb -------------------------------------------------------------------------------- /tests/more_languages/group4/matlab_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/matlab_test.m -------------------------------------------------------------------------------- /tests/more_languages/group4/rust_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/rust_test.rs -------------------------------------------------------------------------------- /tests/more_languages/group4/test.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/test.zig -------------------------------------------------------------------------------- /tests/more_languages/group4/test_fsharp.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/test_fsharp.fs -------------------------------------------------------------------------------- /tests/more_languages/group4/test_tcl_tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/test_tcl_tk.tcl -------------------------------------------------------------------------------- /tests/more_languages/group4/tf_test.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group4/tf_test.tf -------------------------------------------------------------------------------- /tests/more_languages/group5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/Makefile -------------------------------------------------------------------------------- /tests/more_languages/group5/ansible_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/ansible_test.yml -------------------------------------------------------------------------------- /tests/more_languages/group5/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/app-routing.module.ts -------------------------------------------------------------------------------- /tests/more_languages/group5/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/app.component.spec.ts -------------------------------------------------------------------------------- /tests/more_languages/group5/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/app.component.ts -------------------------------------------------------------------------------- /tests/more_languages/group5/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/app.module.ts -------------------------------------------------------------------------------- /tests/more_languages/group5/checkbox_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/checkbox_test.md -------------------------------------------------------------------------------- /tests/more_languages/group5/checkbox_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/checkbox_test.txt -------------------------------------------------------------------------------- /tests/more_languages/group5/environment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/environment.test.ts -------------------------------------------------------------------------------- /tests/more_languages/group5/hello_world.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/hello_world.pyi -------------------------------------------------------------------------------- /tests/more_languages/group5/k8s_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/k8s_test.yaml -------------------------------------------------------------------------------- /tests/more_languages/group5/requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/requirements_test.txt -------------------------------------------------------------------------------- /tests/more_languages/group5/rust_todo_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/rust_todo_test.rs -------------------------------------------------------------------------------- /tests/more_languages/group5/sql_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/sql_test.sql -------------------------------------------------------------------------------- /tests/more_languages/group5/standard-app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/standard-app-routing.module.ts -------------------------------------------------------------------------------- /tests/more_languages/group5/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/test.env -------------------------------------------------------------------------------- /tests/more_languages/group5/testJsonSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/testJsonSchema.json -------------------------------------------------------------------------------- /tests/more_languages/group5/testPackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/testPackage.json -------------------------------------------------------------------------------- /tests/more_languages/group5/tickets.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group5/tickets.component.ts -------------------------------------------------------------------------------- /tests/more_languages/group6/Microsoft.PowerShell_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/Microsoft.PowerShell_profile.ps1 -------------------------------------------------------------------------------- /tests/more_languages/group6/catastrophic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/catastrophic.c -------------------------------------------------------------------------------- /tests/more_languages/group6/cpp_examples_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/cpp_examples_impl.cc -------------------------------------------------------------------------------- /tests/more_languages/group6/cpp_examples_impl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/cpp_examples_impl.cu -------------------------------------------------------------------------------- /tests/more_languages/group6/cpp_examples_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/cpp_examples_impl.h -------------------------------------------------------------------------------- /tests/more_languages/group6/edge_case.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/edge_case.hpp -------------------------------------------------------------------------------- /tests/more_languages/group6/fractal.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/fractal.thy -------------------------------------------------------------------------------- /tests/more_languages/group6/python_complex_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/python_complex_class.py -------------------------------------------------------------------------------- /tests/more_languages/group6/ramda__cloneRegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/ramda__cloneRegExp.js -------------------------------------------------------------------------------- /tests/more_languages/group6/ramda_prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/ramda_prop.js -------------------------------------------------------------------------------- /tests/more_languages/group6/tensorflow_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/tensorflow_flags.h -------------------------------------------------------------------------------- /tests/more_languages/group6/test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/test.f -------------------------------------------------------------------------------- /tests/more_languages/group6/torch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/torch.rst -------------------------------------------------------------------------------- /tests/more_languages/group6/yc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group6/yc.html -------------------------------------------------------------------------------- /tests/more_languages/group7/absurdly_huge.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group7/absurdly_huge.jsonl -------------------------------------------------------------------------------- /tests/more_languages/group7/angular_crud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group7/angular_crud.ts -------------------------------------------------------------------------------- /tests/more_languages/group7/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group7/structure.py -------------------------------------------------------------------------------- /tests/more_languages/group7/test.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group7/test.metal -------------------------------------------------------------------------------- /tests/more_languages/group7/test.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group7/test.wgsl -------------------------------------------------------------------------------- /tests/more_languages/group_lisp/LispTest.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_lisp/LispTest.lisp -------------------------------------------------------------------------------- /tests/more_languages/group_lisp/clojure_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_lisp/clojure_test.clj -------------------------------------------------------------------------------- /tests/more_languages/group_lisp/racket_struct.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_lisp/racket_struct.rkt -------------------------------------------------------------------------------- /tests/more_languages/group_lisp/test_scheme.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_lisp/test_scheme.scm -------------------------------------------------------------------------------- /tests/more_languages/group_todo/AAPLShaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/AAPLShaders.metal -------------------------------------------------------------------------------- /tests/more_languages/group_todo/crystal_test.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/crystal_test.cr -------------------------------------------------------------------------------- /tests/more_languages/group_todo/dart_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/dart_test.dart -------------------------------------------------------------------------------- /tests/more_languages/group_todo/elixir_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/elixir_test.exs -------------------------------------------------------------------------------- /tests/more_languages/group_todo/forward.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/forward.frag -------------------------------------------------------------------------------- /tests/more_languages/group_todo/forward.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/forward.vert -------------------------------------------------------------------------------- /tests/more_languages/group_todo/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/nodemon.json -------------------------------------------------------------------------------- /tests/more_languages/group_todo/sas_test.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/sas_test.sas -------------------------------------------------------------------------------- /tests/more_languages/group_todo/testTypings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/testTypings.d.ts -------------------------------------------------------------------------------- /tests/more_languages/group_todo/test_setup_py.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/test_setup_py.test -------------------------------------------------------------------------------- /tests/more_languages/group_todo/vba_test.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/vba_test.bas -------------------------------------------------------------------------------- /tests/more_languages/group_todo/wgsl_test.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/more_languages/group_todo/wgsl_test.wgsl -------------------------------------------------------------------------------- /tests/path_to_test/class_method_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/path_to_test/class_method_type.py -------------------------------------------------------------------------------- /tests/path_to_test/empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/path_to_test/file.md: -------------------------------------------------------------------------------- 1 | # Hello, world! 2 | This is a test markdown file. 3 | -------------------------------------------------------------------------------- /tests/path_to_test/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/path_to_test/file.py -------------------------------------------------------------------------------- /tests/path_to_test/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/path_to_test/file.txt -------------------------------------------------------------------------------- /tests/path_to_test/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/path_to_test/version.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/readme_updates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/readme_updates/medium_README_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/readme_updates/medium_README_source.md -------------------------------------------------------------------------------- /tests/readme_updates/mini_README_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/readme_updates/mini_README_source.md -------------------------------------------------------------------------------- /tests/tensorflow_expectation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/tensorflow_expectation.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/test_deploy.py -------------------------------------------------------------------------------- /tests/test_dotenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/test_dotenv.py -------------------------------------------------------------------------------- /tests/test_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/test_e2e.py -------------------------------------------------------------------------------- /tests/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/test_engine.py -------------------------------------------------------------------------------- /tests/test_more_language_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/test_more_language_units.py -------------------------------------------------------------------------------- /tests/test_programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/test_programs.py -------------------------------------------------------------------------------- /tests/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/test_units.py -------------------------------------------------------------------------------- /tests/test_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/test_web.py -------------------------------------------------------------------------------- /tests/version_increments/test_source_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tests/version_increments/test_source_version.py -------------------------------------------------------------------------------- /tree_plus_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_cli.py -------------------------------------------------------------------------------- /tree_plus_programs/hello_tree_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_programs/hello_tree_plus.py -------------------------------------------------------------------------------- /tree_plus_programs/rewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_programs/rewrite.py -------------------------------------------------------------------------------- /tree_plus_programs/stub_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_programs/stub_tests.py -------------------------------------------------------------------------------- /tree_plus_programs/test_stub_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_programs/test_stub_tests.py -------------------------------------------------------------------------------- /tree_plus_src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/__init__.py -------------------------------------------------------------------------------- /tree_plus_src/count_tokens_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/count_tokens_lines.py -------------------------------------------------------------------------------- /tree_plus_src/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/debug.py -------------------------------------------------------------------------------- /tree_plus_src/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/deploy.py -------------------------------------------------------------------------------- /tree_plus_src/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/engine.py -------------------------------------------------------------------------------- /tree_plus_src/ignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/ignore.py -------------------------------------------------------------------------------- /tree_plus_src/isabelle_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/isabelle_symbols.py -------------------------------------------------------------------------------- /tree_plus_src/parse_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/parse_file.py -------------------------------------------------------------------------------- /tree_plus_src/scripts/alias_tree_plus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/scripts/alias_tree_plus.sh -------------------------------------------------------------------------------- /tree_plus_src/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/version.py -------------------------------------------------------------------------------- /tree_plus_src/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bionicles/tree_plus/HEAD/tree_plus_src/web.py --------------------------------------------------------------------------------