├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── jupyter-settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── SDFG.xml ├── tree-sitter-codeviews.iml └── vcs.xml ├── .vscode └── launch.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── List_Of_Views.pdf ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── environment.yml ├── requirements-dev.txt ├── requirements.txt ├── sample ├── cs.png ├── example.cs ├── example.java ├── java.png └── sample.png ├── setup.cfg ├── setup.py ├── src └── comex │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ ├── codeviews │ ├── AST │ │ ├── AST.py │ │ ├── AST_driver.py │ │ └── __init__.py │ ├── CFG │ │ ├── CFG.py │ │ ├── CFG_csharp.py │ │ ├── CFG_driver.py │ │ ├── CFG_java.py │ │ └── __init__.py │ ├── CST │ │ ├── CST_driver.py │ │ └── __init__.py │ ├── DFG │ │ ├── DFG_driver.py │ │ └── __init__.py │ ├── SDFG │ │ ├── SDFG.py │ │ ├── SDFG_csharp.py │ │ ├── SDFG_java.py │ │ └── __init__.py │ ├── __init__.py │ └── combined_graph │ │ ├── __init__.py │ │ └── combined_driver.py │ ├── tree_parser │ ├── __init__.py │ ├── cs_parser.py │ ├── custom_parser.py │ ├── java_parser.py │ └── parser_driver.py │ └── utils │ ├── DFG_utils.py │ ├── __init__.py │ ├── cs_nodes.py │ ├── java_nodes.py │ ├── postprocessor.py │ ├── preprocessor.py │ └── src_parser.py └── tests ├── __init__.py ├── analyze_clone_cfg.py ├── analyze_fclone_cfg.py ├── analyze_fclone_dfg.py ├── analyze_fclone_gcj.py ├── analyze_fcs_dfg.py ├── analyze_past.py ├── analyze_search_cfg.py ├── analyze_search_dfg.py ├── analyze_translation_cfg.py ├── analyze_translation_dfg.py ├── antipatterns ├── __init__.py ├── cfg.py └── dfg.py ├── data ├── AST │ ├── test1.java │ ├── test1 │ │ ├── test1-answer.json │ │ └── test1-gold.json │ ├── test10.cs │ ├── test10 │ │ ├── test10-answer.json │ │ └── test10-gold.json │ ├── test2.java │ ├── test2 │ │ ├── test2-answer.json │ │ └── test2-gold.json │ ├── test3.cs │ ├── test3 │ │ ├── test3-answer.json │ │ └── test3-gold.json │ ├── test4.cs │ ├── test4 │ │ ├── test4-answer.json │ │ └── test4-gold.json │ ├── test5.cs │ ├── test5 │ │ ├── test5-answer.json │ │ └── test5-gold.json │ ├── test6.cs │ ├── test6 │ │ ├── test6-answer.json │ │ └── test6-gold.json │ ├── test7.cs │ ├── test7 │ │ ├── test7-answer.json │ │ └── test7-gold.json │ ├── test8.cs │ ├── test8 │ │ ├── test8-answer.json │ │ └── test8-gold.json │ ├── test9.cs │ └── test9 │ │ ├── test9-answer.json │ │ └── test9-gold.json ├── CFG │ ├── test1.java │ ├── test1 │ │ ├── test1-answer.json │ │ └── test1-gold.json │ ├── test10.cs │ ├── test10 │ │ ├── test10-answer.json │ │ └── test10-gold.json │ ├── test11.cs │ ├── test11 │ │ ├── test11-answer.json │ │ └── test11-gold.json │ ├── test12.cs │ ├── test12 │ │ ├── test12-answer.json │ │ └── test12-gold.json │ ├── test13.java │ ├── test13 │ │ ├── test13-answer.json │ │ └── test13-gold.json │ ├── test14.java │ ├── test14 │ │ ├── test14-answer.json │ │ └── test14-gold.json │ ├── test15.java │ ├── test15 │ │ ├── test15-answer.json │ │ └── test15-gold.json │ ├── test16.java │ ├── test16 │ │ ├── test16-answer.json │ │ └── test16-gold.json │ ├── test17.java │ ├── test17 │ │ ├── test17-answer.json │ │ └── test17-gold.json │ ├── test18.java │ ├── test18 │ │ ├── test18-answer.json │ │ └── test18-gold.json │ ├── test19.java │ ├── test19 │ │ ├── test19-answer.json │ │ └── test19-gold.json │ ├── test2.java │ ├── test2 │ │ ├── test2-answer.json │ │ └── test2-gold.json │ ├── test20.java │ ├── test20 │ │ ├── test20-answer.json │ │ └── test20-gold.json │ ├── test21.java │ ├── test21 │ │ ├── test21-answer.json │ │ └── test21-gold.json │ ├── test22.java │ ├── test22 │ │ ├── test22-answer.json │ │ └── test22-gold.json │ ├── test23.java │ ├── test23 │ │ ├── test23-answer.json │ │ └── test23-gold.json │ ├── test24.java │ ├── test24 │ │ ├── test24-answer.json │ │ └── test24-gold.json │ ├── test25.java │ ├── test25 │ │ ├── test25-answer.json │ │ └── test25-gold.json │ ├── test26.java │ ├── test26 │ │ ├── test26-answer.json │ │ └── test26-gold.json │ ├── test27.java │ ├── test27 │ │ ├── test27-answer.json │ │ └── test27-gold.json │ ├── test28.java │ ├── test28 │ │ ├── test28-answer.json │ │ └── test28-gold.json │ ├── test29.java │ ├── test29 │ │ ├── test29-answer.json │ │ └── test29-gold.json │ ├── test3.java │ ├── test3 │ │ ├── test3-answer.json │ │ └── test3-gold.json │ ├── test30.java │ ├── test30 │ │ ├── test30-answer.json │ │ └── test30-gold.json │ ├── test31.java │ ├── test31 │ │ ├── test31-answer.json │ │ └── test31-gold.json │ ├── test32.java │ ├── test32 │ │ ├── test32-answer.json │ │ └── test32-gold.json │ ├── test33.java │ ├── test33 │ │ ├── test33-answer.json │ │ └── test33-gold.json │ ├── test34.java │ ├── test34 │ │ ├── test34-answer.json │ │ └── test34-gold.json │ ├── test35.java │ ├── test35 │ │ ├── test35-answer.json │ │ └── test35-gold.json │ ├── test36.java │ ├── test36 │ │ ├── test36-answer.json │ │ └── test36-gold.json │ ├── test37.java │ ├── test37 │ │ ├── test37-answer.json │ │ └── test37-gold.json │ ├── test38.java │ ├── test38 │ │ ├── test38-answer.json │ │ └── test38-gold.json │ ├── test39.java │ ├── test39 │ │ ├── test39-answer.json │ │ └── test39-gold.json │ ├── test4.java │ ├── test4 │ │ ├── test4-answer.json │ │ └── test4-gold.json │ ├── test5.cs │ ├── test5 │ │ ├── test5-answer.json │ │ └── test5-gold.json │ ├── test6.cs │ ├── test6 │ │ ├── test6-answer.json │ │ └── test6-gold.json │ ├── test7.cs │ ├── test7 │ │ ├── test7-answer.json │ │ └── test7-gold.json │ ├── test8.cs │ ├── test8 │ │ ├── test8-answer.json │ │ └── test8-gold.json │ ├── test9.cs │ └── test9 │ │ ├── test9-answer.json │ │ └── test9-gold.json ├── COMBINED │ ├── alex-config.json │ ├── alex.java │ ├── alex │ │ ├── alex-answer.json │ │ └── alex-gold.json │ ├── alex1-config.json │ ├── alex1.java │ ├── alex1 │ │ ├── alex1-answer.json │ │ └── alex1-gold.json │ ├── alex_call-config.json │ ├── alex_call.java │ ├── alex_call │ │ ├── alex_call-answer.json │ │ └── alex_call-gold.json │ ├── alex_field_access-config.json │ ├── alex_field_access.java │ ├── alex_field_access │ │ ├── alex_field_access-answer.json │ │ └── alex_field_access-gold.json │ ├── alex_large-config.json │ ├── alex_large.java │ ├── alex_large │ │ ├── alex_large-answer.json │ │ └── alex_large-gold.json │ ├── alex_plusplus-config.json │ ├── alex_plusplus.java │ ├── alex_plusplus │ │ ├── alex_plusplus-answer.json │ │ └── alex_plusplus-gold.json │ ├── alex_plusplus_algo1-config.json │ ├── alex_plusplus_algo1.java │ ├── alex_plusplus_algo1 │ │ ├── alex_plusplus_algo1-answer.json │ │ └── alex_plusplus_algo1-gold.json │ ├── alex_pp_cs-config.json │ ├── alex_pp_cs.cs │ ├── alex_pp_cs │ │ ├── alex_pp_cs-answer.json │ │ └── alex_pp_cs-gold.json │ ├── failing_node-config.json │ ├── failing_node.java │ ├── failing_node │ │ ├── failing_node-answer.json │ │ └── failing_node-gold.json │ ├── last_d_nl1-config.json │ ├── last_d_nl1.java │ ├── last_d_nl1 │ │ ├── last_d_nl1-answer.json │ │ └── last_d_nl1-gold.json │ ├── last_u_nl1-config.json │ ├── last_u_nl1.java │ ├── last_u_nl1 │ │ ├── last_u_nl1-answer.json │ │ └── last_u_nl1-gold.json │ ├── last_u_nl2-config.json │ ├── last_u_nl2.java │ ├── last_u_nl2 │ │ ├── last_u_nl2-answer.json │ │ └── last_u_nl2-gold.json │ ├── last_ud_nl1-config.json │ ├── last_ud_nl1.java │ ├── last_ud_nl1 │ │ ├── last_ud_nl1-answer.json │ │ └── last_ud_nl1-gold.json │ ├── method_call-config.json │ ├── method_call.cs │ ├── method_call │ │ ├── method_call-answer.json │ │ └── method_call-gold.json │ ├── nested_calls-config.json │ ├── nested_calls.java │ ├── nested_calls │ │ ├── nested_calls-answer.json │ │ └── nested_calls-gold.json │ ├── same_name-config.json │ ├── same_name.cs │ ├── same_name │ │ ├── same_name-answer.json │ │ └── same_name-gold.json │ ├── test1-config.json │ ├── test1.java │ ├── test1 │ │ ├── test1-answer.json │ │ └── test1-gold.json │ ├── test10-config.json │ ├── test10.java │ ├── test10 │ │ ├── test10-answer.json │ │ └── test10-gold.json │ ├── test11-config.json │ ├── test11.java │ ├── test11 │ │ ├── test11-answer.json │ │ └── test11-gold.json │ ├── test12-config.json │ ├── test12.java │ ├── test12 │ │ ├── test12-answer.json │ │ └── test12-gold.json │ ├── test13-config.json │ ├── test13.java │ ├── test13 │ │ ├── test13-answer.json │ │ └── test13-gold.json │ ├── test2-config.json │ ├── test2.java │ ├── test2 │ │ ├── test2-answer.json │ │ └── test2-gold.json │ ├── test3-config.json │ ├── test3.java │ ├── test3 │ │ ├── test3-answer.json │ │ └── test3-gold.json │ ├── test4-config.json │ ├── test4.cs │ ├── test4 │ │ ├── test4-answer.json │ │ └── test4-gold.json │ ├── test5-config.json │ ├── test5.java │ ├── test5 │ │ ├── test5-answer.json │ │ └── test5-gold.json │ ├── test6-config.json │ ├── test6.java │ ├── test6 │ │ ├── test6-answer.json │ │ └── test6-gold.json │ ├── test7-config.json │ ├── test7.java │ ├── test7 │ │ ├── test7-answer.json │ │ └── test7-gold.json │ ├── test8-config.json │ ├── test8.java │ ├── test8 │ │ ├── test8-answer.json │ │ └── test8-gold.json │ ├── test9-config.json │ ├── test9.java │ └── test9 │ │ ├── test9-answer.json │ │ └── test9-gold.json ├── DFG │ ├── test1.java │ ├── test1 │ │ ├── test1-answer.json │ │ └── test1-gold.json │ ├── test10.cs │ ├── test10 │ │ ├── test10-answer.json │ │ └── test10-gold.json │ ├── test2.java │ ├── test2 │ │ ├── test2-answer.json │ │ └── test2-gold.json │ ├── test3.java │ ├── test3 │ │ ├── test3-answer.json │ │ └── test3-gold.json │ ├── test4.cs │ ├── test4 │ │ ├── test4-answer.json │ │ └── test4-gold.json │ ├── test5.cs │ ├── test5 │ │ ├── test5-answer.json │ │ └── test5-gold.json │ ├── test6.cs │ ├── test6 │ │ ├── test6-answer.json │ │ └── test6-gold.json │ ├── test7.cs │ ├── test7 │ │ ├── test7-answer.json │ │ └── test7-gold.json │ ├── test8.cs │ ├── test8 │ │ ├── test8-answer.json │ │ └── test8-gold.json │ ├── test9.cs │ └── test9 │ │ ├── test9-answer.json │ │ └── test9-gold.json ├── RANDOM │ ├── config.json │ ├── cs_file.cs │ ├── search.txt │ ├── translation.cs │ └── translation.java └── SDFG │ ├── f2.cs │ ├── f2 │ ├── f2-answer.json │ └── f2-gold.json │ ├── nested_adjacent_for_loops.cs │ ├── nested_adjacent_for_loops │ ├── nested_adjacent_for_loops-answer.json │ └── nested_adjacent_for_loops-gold.json │ ├── nested_adjacent_for_loops_java.java │ ├── nested_adjacent_for_loops_java │ ├── nested_adjacent_for_loops_java-answer.json │ └── nested_adjacent_for_loops_java-gold.json │ ├── nested_do_while.cs │ ├── nested_do_while │ ├── nested_do_while-answer.json │ └── nested_do_while-gold.json │ ├── nested_do_while_java.java │ ├── nested_do_while_java │ ├── nested_do_while_java-answer.json │ └── nested_do_while_java-gold.json │ ├── nested_ifs.cs │ ├── nested_ifs │ ├── nested_ifs-answer.json │ └── nested_ifs-gold.json │ ├── nested_ifs_java.java │ ├── nested_ifs_java │ ├── nested_ifs_java-answer.json │ └── nested_ifs_java-gold.json │ ├── obj_d1.cs │ ├── obj_d1 │ ├── obj_d1-answer.json │ └── obj_d1-gold.json │ ├── obj_d1_java.java │ ├── obj_d1_java │ ├── obj_d1_java-answer.json │ └── obj_d1_java-gold.json │ ├── obj_d2.cs │ ├── obj_d2 │ ├── obj_d2-answer.json │ └── obj_d2-gold.json │ ├── obj_d2_java.java │ ├── obj_d2_java │ ├── obj_d2_java-answer.json │ └── obj_d2_java-gold.json │ ├── obja_d4.cs │ ├── obja_d4 │ ├── obja_d4-answer.json │ └── obja_d4-gold.json │ ├── obja_d4_java.java │ ├── obja_d4_java │ ├── obja_d4_java-answer.json │ └── obja_d4_java-gold.json │ ├── objc_d3.cs │ ├── objc_d3 │ ├── objc_d3-answer.json │ └── objc_d3-gold.json │ ├── objc_d3_java.java │ ├── objc_d3_java │ ├── objc_d3_java-answer.json │ └── objc_d3_java-gold.json │ ├── scope.java │ ├── scope │ ├── scope-answer.json │ └── scope-gold.json │ ├── sscope.cs │ ├── sscope │ ├── sscope-answer.json │ └── sscope-gold.json │ ├── test11.java │ ├── test11 │ ├── test11-answer.json │ └── test11-gold.json │ ├── test5.cs │ ├── test5 │ ├── test5-answer.json │ └── test5-gold.json │ ├── test5_java.java │ ├── test5_java │ ├── test5_java-answer.json │ └── test5_java-gold.json │ ├── test7.cs │ └── test7 │ ├── test7-answer.json │ └── test7-gold.json ├── log_analyzer.py ├── preprocess_data.py └── test_codeviews.py /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jupyter-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.idea/jupyter-settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/SDFG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.idea/runConfigurations/SDFG.xml -------------------------------------------------------------------------------- /.idea/tree-sitter-codeviews.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.idea/tree-sitter-codeviews.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/LICENSE -------------------------------------------------------------------------------- /List_Of_Views.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/List_Of_Views.pdf -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/SECURITY.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/environment.yml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -e .[dev] -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /sample/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/sample/cs.png -------------------------------------------------------------------------------- /sample/example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/sample/example.cs -------------------------------------------------------------------------------- /sample/example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/sample/example.java -------------------------------------------------------------------------------- /sample/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/sample/java.png -------------------------------------------------------------------------------- /sample/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/sample/sample.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/setup.py -------------------------------------------------------------------------------- /src/comex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/__init__.py -------------------------------------------------------------------------------- /src/comex/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/__main__.py -------------------------------------------------------------------------------- /src/comex/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/cli.py -------------------------------------------------------------------------------- /src/comex/codeviews/AST/AST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/AST/AST.py -------------------------------------------------------------------------------- /src/comex/codeviews/AST/AST_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/AST/AST_driver.py -------------------------------------------------------------------------------- /src/comex/codeviews/AST/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/comex/codeviews/CFG/CFG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/CFG/CFG.py -------------------------------------------------------------------------------- /src/comex/codeviews/CFG/CFG_csharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/CFG/CFG_csharp.py -------------------------------------------------------------------------------- /src/comex/codeviews/CFG/CFG_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/CFG/CFG_driver.py -------------------------------------------------------------------------------- /src/comex/codeviews/CFG/CFG_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/CFG/CFG_java.py -------------------------------------------------------------------------------- /src/comex/codeviews/CFG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/comex/codeviews/CST/CST_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/CST/CST_driver.py -------------------------------------------------------------------------------- /src/comex/codeviews/CST/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/comex/codeviews/DFG/DFG_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/DFG/DFG_driver.py -------------------------------------------------------------------------------- /src/comex/codeviews/DFG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/comex/codeviews/SDFG/SDFG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/SDFG/SDFG.py -------------------------------------------------------------------------------- /src/comex/codeviews/SDFG/SDFG_csharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/SDFG/SDFG_csharp.py -------------------------------------------------------------------------------- /src/comex/codeviews/SDFG/SDFG_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/SDFG/SDFG_java.py -------------------------------------------------------------------------------- /src/comex/codeviews/SDFG/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/comex/codeviews/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/comex/codeviews/combined_graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/comex/codeviews/combined_graph/combined_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/codeviews/combined_graph/combined_driver.py -------------------------------------------------------------------------------- /src/comex/tree_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/comex/tree_parser/cs_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/tree_parser/cs_parser.py -------------------------------------------------------------------------------- /src/comex/tree_parser/custom_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/tree_parser/custom_parser.py -------------------------------------------------------------------------------- /src/comex/tree_parser/java_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/tree_parser/java_parser.py -------------------------------------------------------------------------------- /src/comex/tree_parser/parser_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/tree_parser/parser_driver.py -------------------------------------------------------------------------------- /src/comex/utils/DFG_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/utils/DFG_utils.py -------------------------------------------------------------------------------- /src/comex/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/comex/utils/cs_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/utils/cs_nodes.py -------------------------------------------------------------------------------- /src/comex/utils/java_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/utils/java_nodes.py -------------------------------------------------------------------------------- /src/comex/utils/postprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/utils/postprocessor.py -------------------------------------------------------------------------------- /src/comex/utils/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/utils/preprocessor.py -------------------------------------------------------------------------------- /src/comex/utils/src_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/src/comex/utils/src_parser.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Prevent this directory from being basedir""" 2 | -------------------------------------------------------------------------------- /tests/analyze_clone_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_clone_cfg.py -------------------------------------------------------------------------------- /tests/analyze_fclone_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_fclone_cfg.py -------------------------------------------------------------------------------- /tests/analyze_fclone_dfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_fclone_dfg.py -------------------------------------------------------------------------------- /tests/analyze_fclone_gcj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_fclone_gcj.py -------------------------------------------------------------------------------- /tests/analyze_fcs_dfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_fcs_dfg.py -------------------------------------------------------------------------------- /tests/analyze_past.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_past.py -------------------------------------------------------------------------------- /tests/analyze_search_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_search_cfg.py -------------------------------------------------------------------------------- /tests/analyze_search_dfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_search_dfg.py -------------------------------------------------------------------------------- /tests/analyze_translation_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_translation_cfg.py -------------------------------------------------------------------------------- /tests/analyze_translation_dfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/analyze_translation_dfg.py -------------------------------------------------------------------------------- /tests/antipatterns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/antipatterns/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/antipatterns/cfg.py -------------------------------------------------------------------------------- /tests/antipatterns/dfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/antipatterns/dfg.py -------------------------------------------------------------------------------- /tests/data/AST/test1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test1.java -------------------------------------------------------------------------------- /tests/data/AST/test1/test1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test1/test1-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test1/test1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test1/test1-gold.json -------------------------------------------------------------------------------- /tests/data/AST/test10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test10.cs -------------------------------------------------------------------------------- /tests/data/AST/test10/test10-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test10/test10-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test10/test10-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test10/test10-gold.json -------------------------------------------------------------------------------- /tests/data/AST/test2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test2.java -------------------------------------------------------------------------------- /tests/data/AST/test2/test2-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test2/test2-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test2/test2-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test2/test2-gold.json -------------------------------------------------------------------------------- /tests/data/AST/test3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test3.cs -------------------------------------------------------------------------------- /tests/data/AST/test3/test3-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test3/test3-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test3/test3-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test3/test3-gold.json -------------------------------------------------------------------------------- /tests/data/AST/test4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test4.cs -------------------------------------------------------------------------------- /tests/data/AST/test4/test4-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test4/test4-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test4/test4-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test4/test4-gold.json -------------------------------------------------------------------------------- /tests/data/AST/test5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test5.cs -------------------------------------------------------------------------------- /tests/data/AST/test5/test5-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test5/test5-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test5/test5-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test5/test5-gold.json -------------------------------------------------------------------------------- /tests/data/AST/test6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test6.cs -------------------------------------------------------------------------------- /tests/data/AST/test6/test6-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test6/test6-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test6/test6-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test6/test6-gold.json -------------------------------------------------------------------------------- /tests/data/AST/test7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test7.cs -------------------------------------------------------------------------------- /tests/data/AST/test7/test7-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test7/test7-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test7/test7-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test7/test7-gold.json -------------------------------------------------------------------------------- /tests/data/AST/test8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test8.cs -------------------------------------------------------------------------------- /tests/data/AST/test8/test8-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test8/test8-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test8/test8-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test8/test8-gold.json -------------------------------------------------------------------------------- /tests/data/AST/test9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test9.cs -------------------------------------------------------------------------------- /tests/data/AST/test9/test9-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test9/test9-answer.json -------------------------------------------------------------------------------- /tests/data/AST/test9/test9-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/AST/test9/test9-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test1.java -------------------------------------------------------------------------------- /tests/data/CFG/test1/test1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test1/test1-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test1/test1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test1/test1-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test10.cs -------------------------------------------------------------------------------- /tests/data/CFG/test10/test10-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test10/test10-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test10/test10-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test10/test10-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test11.cs -------------------------------------------------------------------------------- /tests/data/CFG/test11/test11-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test11/test11-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test11/test11-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test11/test11-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test12.cs -------------------------------------------------------------------------------- /tests/data/CFG/test12/test12-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test12/test12-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test12/test12-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test12/test12-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test13.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test13.java -------------------------------------------------------------------------------- /tests/data/CFG/test13/test13-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test13/test13-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test13/test13-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test13/test13-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test14.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test14.java -------------------------------------------------------------------------------- /tests/data/CFG/test14/test14-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test14/test14-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test14/test14-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test14/test14-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test15.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test15.java -------------------------------------------------------------------------------- /tests/data/CFG/test15/test15-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test15/test15-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test15/test15-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test15/test15-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test16.java -------------------------------------------------------------------------------- /tests/data/CFG/test16/test16-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test16/test16-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test16/test16-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test16/test16-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test17.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test17.java -------------------------------------------------------------------------------- /tests/data/CFG/test17/test17-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test17/test17-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test17/test17-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test17/test17-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test18.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test18.java -------------------------------------------------------------------------------- /tests/data/CFG/test18/test18-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test18/test18-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test18/test18-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test18/test18-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test19.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test19.java -------------------------------------------------------------------------------- /tests/data/CFG/test19/test19-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test19/test19-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test19/test19-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test19/test19-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test2.java -------------------------------------------------------------------------------- /tests/data/CFG/test2/test2-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test2/test2-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test2/test2-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test2/test2-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test20.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test20.java -------------------------------------------------------------------------------- /tests/data/CFG/test20/test20-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test20/test20-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test20/test20-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test20/test20-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test21.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test21.java -------------------------------------------------------------------------------- /tests/data/CFG/test21/test21-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test21/test21-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test21/test21-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test21/test21-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test22.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test22.java -------------------------------------------------------------------------------- /tests/data/CFG/test22/test22-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test22/test22-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test22/test22-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test22/test22-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test23.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test23.java -------------------------------------------------------------------------------- /tests/data/CFG/test23/test23-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test23/test23-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test23/test23-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test23/test23-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test24.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test24.java -------------------------------------------------------------------------------- /tests/data/CFG/test24/test24-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test24/test24-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test24/test24-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test24/test24-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test25.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test25.java -------------------------------------------------------------------------------- /tests/data/CFG/test25/test25-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test25/test25-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test25/test25-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test25/test25-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test26.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test26.java -------------------------------------------------------------------------------- /tests/data/CFG/test26/test26-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test26/test26-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test26/test26-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test26/test26-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test27.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test27.java -------------------------------------------------------------------------------- /tests/data/CFG/test27/test27-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test27/test27-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test27/test27-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test27/test27-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test28.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test28.java -------------------------------------------------------------------------------- /tests/data/CFG/test28/test28-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test28/test28-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test28/test28-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test28/test28-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test29.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test29.java -------------------------------------------------------------------------------- /tests/data/CFG/test29/test29-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test29/test29-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test29/test29-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test29/test29-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test3.java -------------------------------------------------------------------------------- /tests/data/CFG/test3/test3-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test3/test3-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test3/test3-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test3/test3-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test30.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test30.java -------------------------------------------------------------------------------- /tests/data/CFG/test30/test30-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test30/test30-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test30/test30-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test30/test30-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test31.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test31.java -------------------------------------------------------------------------------- /tests/data/CFG/test31/test31-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test31/test31-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test31/test31-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test31/test31-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test32.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test32.java -------------------------------------------------------------------------------- /tests/data/CFG/test32/test32-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test32/test32-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test32/test32-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test32/test32-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test33.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test33.java -------------------------------------------------------------------------------- /tests/data/CFG/test33/test33-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test33/test33-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test33/test33-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test33/test33-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test34.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test34.java -------------------------------------------------------------------------------- /tests/data/CFG/test34/test34-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test34/test34-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test34/test34-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test34/test34-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test35.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test35.java -------------------------------------------------------------------------------- /tests/data/CFG/test35/test35-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test35/test35-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test35/test35-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test35/test35-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test36.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test36.java -------------------------------------------------------------------------------- /tests/data/CFG/test36/test36-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test36/test36-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test36/test36-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test36/test36-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test37.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test37.java -------------------------------------------------------------------------------- /tests/data/CFG/test37/test37-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test37/test37-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test37/test37-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test37/test37-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test38.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test38.java -------------------------------------------------------------------------------- /tests/data/CFG/test38/test38-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test38/test38-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test38/test38-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test38/test38-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test39.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test39.java -------------------------------------------------------------------------------- /tests/data/CFG/test39/test39-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test39/test39-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test39/test39-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test39/test39-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test4.java -------------------------------------------------------------------------------- /tests/data/CFG/test4/test4-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test4/test4-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test4/test4-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test4/test4-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test5.cs -------------------------------------------------------------------------------- /tests/data/CFG/test5/test5-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test5/test5-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test5/test5-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test5/test5-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test6.cs -------------------------------------------------------------------------------- /tests/data/CFG/test6/test6-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test6/test6-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test6/test6-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test6/test6-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test7.cs -------------------------------------------------------------------------------- /tests/data/CFG/test7/test7-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test7/test7-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test7/test7-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test7/test7-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test8.cs -------------------------------------------------------------------------------- /tests/data/CFG/test8/test8-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test8/test8-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test8/test8-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test8/test8-gold.json -------------------------------------------------------------------------------- /tests/data/CFG/test9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test9.cs -------------------------------------------------------------------------------- /tests/data/CFG/test9/test9-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test9/test9-answer.json -------------------------------------------------------------------------------- /tests/data/CFG/test9/test9-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/CFG/test9/test9-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex.java -------------------------------------------------------------------------------- /tests/data/COMBINED/alex/alex-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex/alex-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex/alex-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex/alex-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex1-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex1-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex1.java -------------------------------------------------------------------------------- /tests/data/COMBINED/alex1/alex1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex1/alex1-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex1/alex1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex1/alex1-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_call-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_call-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_call.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_call.java -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_call/alex_call-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_call/alex_call-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_call/alex_call-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_call/alex_call-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_field_access-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_field_access-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_field_access.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_field_access.java -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_field_access/alex_field_access-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_field_access/alex_field_access-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_field_access/alex_field_access-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_field_access/alex_field_access-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_large-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_large-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_large.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_large.java -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_large/alex_large-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_large/alex_large-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_large/alex_large-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_large/alex_large-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_plusplus-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_plusplus-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_plusplus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_plusplus.java -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_plusplus/alex_plusplus-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_plusplus/alex_plusplus-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_plusplus/alex_plusplus-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_plusplus/alex_plusplus-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_plusplus_algo1-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_plusplus_algo1-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_plusplus_algo1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_plusplus_algo1.java -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_plusplus_algo1/alex_plusplus_algo1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_plusplus_algo1/alex_plusplus_algo1-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_plusplus_algo1/alex_plusplus_algo1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_plusplus_algo1/alex_plusplus_algo1-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_pp_cs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_pp_cs-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_pp_cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_pp_cs.cs -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_pp_cs/alex_pp_cs-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_pp_cs/alex_pp_cs-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/alex_pp_cs/alex_pp_cs-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/alex_pp_cs/alex_pp_cs-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/failing_node-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/failing_node-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/failing_node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/failing_node.java -------------------------------------------------------------------------------- /tests/data/COMBINED/failing_node/failing_node-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/failing_node/failing_node-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/failing_node/failing_node-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/failing_node/failing_node-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_d_nl1-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_d_nl1-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_d_nl1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_d_nl1.java -------------------------------------------------------------------------------- /tests/data/COMBINED/last_d_nl1/last_d_nl1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_d_nl1/last_d_nl1-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_d_nl1/last_d_nl1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_d_nl1/last_d_nl1-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_u_nl1-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_u_nl1-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_u_nl1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_u_nl1.java -------------------------------------------------------------------------------- /tests/data/COMBINED/last_u_nl1/last_u_nl1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_u_nl1/last_u_nl1-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_u_nl1/last_u_nl1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_u_nl1/last_u_nl1-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_u_nl2-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_u_nl2-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_u_nl2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_u_nl2.java -------------------------------------------------------------------------------- /tests/data/COMBINED/last_u_nl2/last_u_nl2-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_u_nl2/last_u_nl2-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_u_nl2/last_u_nl2-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_u_nl2/last_u_nl2-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_ud_nl1-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_ud_nl1-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_ud_nl1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_ud_nl1.java -------------------------------------------------------------------------------- /tests/data/COMBINED/last_ud_nl1/last_ud_nl1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_ud_nl1/last_ud_nl1-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/last_ud_nl1/last_ud_nl1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/last_ud_nl1/last_ud_nl1-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/method_call-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/method_call-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/method_call.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/method_call.cs -------------------------------------------------------------------------------- /tests/data/COMBINED/method_call/method_call-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/method_call/method_call-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/method_call/method_call-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/method_call/method_call-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/nested_calls-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/nested_calls-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/nested_calls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/nested_calls.java -------------------------------------------------------------------------------- /tests/data/COMBINED/nested_calls/nested_calls-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/nested_calls/nested_calls-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/nested_calls/nested_calls-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/nested_calls/nested_calls-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/same_name-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/same_name-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/same_name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/same_name.cs -------------------------------------------------------------------------------- /tests/data/COMBINED/same_name/same_name-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/same_name/same_name-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/same_name/same_name-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/same_name/same_name-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test1-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test1-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test1.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test1/test1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test1/test1-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test1/test1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test1/test1-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test10-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test10-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test10.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test10.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test10/test10-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test10/test10-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test10/test10-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test10/test10-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test11-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test11-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test11.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test11.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test11/test11-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test11/test11-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test11/test11-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test11/test11-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test12-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test12-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test12.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test12.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test12/test12-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test12/test12-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test12/test12-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test12/test12-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test13-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test13-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test13.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test13.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test13/test13-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test13/test13-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test13/test13-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test13/test13-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test2-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test2-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test2.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test2/test2-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test2/test2-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test2/test2-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test2/test2-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test3-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test3-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test3.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test3/test3-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test3/test3-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test3/test3-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test3/test3-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test4-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test4-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test4.cs -------------------------------------------------------------------------------- /tests/data/COMBINED/test4/test4-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test4/test4-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test4/test4-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test4/test4-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test5-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test5-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test5.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test5/test5-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test5/test5-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test5/test5-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test5/test5-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test6-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test6-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test6.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test6.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test6/test6-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test6/test6-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test6/test6-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test6/test6-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test7-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test7-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test7.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test7/test7-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test7/test7-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test7/test7-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test7/test7-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test8-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test8-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test8.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test8.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test8/test8-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test8/test8-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test8/test8-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test8/test8-gold.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test9-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test9-config.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test9.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test9.java -------------------------------------------------------------------------------- /tests/data/COMBINED/test9/test9-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test9/test9-answer.json -------------------------------------------------------------------------------- /tests/data/COMBINED/test9/test9-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/COMBINED/test9/test9-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test1.java -------------------------------------------------------------------------------- /tests/data/DFG/test1/test1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test1/test1-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test1/test1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test1/test1-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test10.cs -------------------------------------------------------------------------------- /tests/data/DFG/test10/test10-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test10/test10-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test10/test10-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test10/test10-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test2.java -------------------------------------------------------------------------------- /tests/data/DFG/test2/test2-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test2/test2-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test2/test2-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test2/test2-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test3.java -------------------------------------------------------------------------------- /tests/data/DFG/test3/test3-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test3/test3-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test3/test3-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test3/test3-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test4.cs -------------------------------------------------------------------------------- /tests/data/DFG/test4/test4-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test4/test4-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test4/test4-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test4/test4-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test5.cs -------------------------------------------------------------------------------- /tests/data/DFG/test5/test5-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test5/test5-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test5/test5-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test5/test5-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test6.cs -------------------------------------------------------------------------------- /tests/data/DFG/test6/test6-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test6/test6-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test6/test6-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test6/test6-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test7.cs -------------------------------------------------------------------------------- /tests/data/DFG/test7/test7-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test7/test7-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test7/test7-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test7/test7-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test8.cs -------------------------------------------------------------------------------- /tests/data/DFG/test8/test8-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test8/test8-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test8/test8-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test8/test8-gold.json -------------------------------------------------------------------------------- /tests/data/DFG/test9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test9.cs -------------------------------------------------------------------------------- /tests/data/DFG/test9/test9-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test9/test9-answer.json -------------------------------------------------------------------------------- /tests/data/DFG/test9/test9-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/DFG/test9/test9-gold.json -------------------------------------------------------------------------------- /tests/data/RANDOM/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/RANDOM/config.json -------------------------------------------------------------------------------- /tests/data/RANDOM/cs_file.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/RANDOM/cs_file.cs -------------------------------------------------------------------------------- /tests/data/RANDOM/search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/RANDOM/search.txt -------------------------------------------------------------------------------- /tests/data/RANDOM/translation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/RANDOM/translation.cs -------------------------------------------------------------------------------- /tests/data/RANDOM/translation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/RANDOM/translation.java -------------------------------------------------------------------------------- /tests/data/SDFG/f2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/f2.cs -------------------------------------------------------------------------------- /tests/data/SDFG/f2/f2-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/f2/f2-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/f2/f2-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/f2/f2-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_adjacent_for_loops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_adjacent_for_loops.cs -------------------------------------------------------------------------------- /tests/data/SDFG/nested_adjacent_for_loops/nested_adjacent_for_loops-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_adjacent_for_loops/nested_adjacent_for_loops-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_adjacent_for_loops/nested_adjacent_for_loops-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_adjacent_for_loops/nested_adjacent_for_loops-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_adjacent_for_loops_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_adjacent_for_loops_java.java -------------------------------------------------------------------------------- /tests/data/SDFG/nested_adjacent_for_loops_java/nested_adjacent_for_loops_java-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_adjacent_for_loops_java/nested_adjacent_for_loops_java-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_adjacent_for_loops_java/nested_adjacent_for_loops_java-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_adjacent_for_loops_java/nested_adjacent_for_loops_java-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_do_while.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_do_while.cs -------------------------------------------------------------------------------- /tests/data/SDFG/nested_do_while/nested_do_while-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_do_while/nested_do_while-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_do_while/nested_do_while-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_do_while/nested_do_while-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_do_while_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_do_while_java.java -------------------------------------------------------------------------------- /tests/data/SDFG/nested_do_while_java/nested_do_while_java-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_do_while_java/nested_do_while_java-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_do_while_java/nested_do_while_java-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_do_while_java/nested_do_while_java-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_ifs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_ifs.cs -------------------------------------------------------------------------------- /tests/data/SDFG/nested_ifs/nested_ifs-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_ifs/nested_ifs-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_ifs/nested_ifs-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_ifs/nested_ifs-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_ifs_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_ifs_java.java -------------------------------------------------------------------------------- /tests/data/SDFG/nested_ifs_java/nested_ifs_java-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_ifs_java/nested_ifs_java-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/nested_ifs_java/nested_ifs_java-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/nested_ifs_java/nested_ifs_java-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d1.cs -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d1/obj_d1-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d1/obj_d1-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d1/obj_d1-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d1/obj_d1-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d1_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d1_java.java -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d1_java/obj_d1_java-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d1_java/obj_d1_java-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d1_java/obj_d1_java-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d1_java/obj_d1_java-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d2.cs -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d2/obj_d2-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d2/obj_d2-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d2/obj_d2-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d2/obj_d2-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d2_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d2_java.java -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d2_java/obj_d2_java-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d2_java/obj_d2_java-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/obj_d2_java/obj_d2_java-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obj_d2_java/obj_d2_java-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/obja_d4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obja_d4.cs -------------------------------------------------------------------------------- /tests/data/SDFG/obja_d4/obja_d4-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obja_d4/obja_d4-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/obja_d4/obja_d4-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obja_d4/obja_d4-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/obja_d4_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obja_d4_java.java -------------------------------------------------------------------------------- /tests/data/SDFG/obja_d4_java/obja_d4_java-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obja_d4_java/obja_d4_java-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/obja_d4_java/obja_d4_java-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/obja_d4_java/obja_d4_java-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/objc_d3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/objc_d3.cs -------------------------------------------------------------------------------- /tests/data/SDFG/objc_d3/objc_d3-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/objc_d3/objc_d3-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/objc_d3/objc_d3-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/objc_d3/objc_d3-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/objc_d3_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/objc_d3_java.java -------------------------------------------------------------------------------- /tests/data/SDFG/objc_d3_java/objc_d3_java-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/objc_d3_java/objc_d3_java-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/objc_d3_java/objc_d3_java-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/objc_d3_java/objc_d3_java-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/scope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/scope.java -------------------------------------------------------------------------------- /tests/data/SDFG/scope/scope-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/scope/scope-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/scope/scope-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/scope/scope-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/sscope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/sscope.cs -------------------------------------------------------------------------------- /tests/data/SDFG/sscope/sscope-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/sscope/sscope-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/sscope/sscope-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/sscope/sscope-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/test11.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test11.java -------------------------------------------------------------------------------- /tests/data/SDFG/test11/test11-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test11/test11-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/test11/test11-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test11/test11-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/test5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test5.cs -------------------------------------------------------------------------------- /tests/data/SDFG/test5/test5-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test5/test5-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/test5/test5-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test5/test5-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/test5_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test5_java.java -------------------------------------------------------------------------------- /tests/data/SDFG/test5_java/test5_java-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test5_java/test5_java-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/test5_java/test5_java-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test5_java/test5_java-gold.json -------------------------------------------------------------------------------- /tests/data/SDFG/test7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test7.cs -------------------------------------------------------------------------------- /tests/data/SDFG/test7/test7-answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test7/test7-answer.json -------------------------------------------------------------------------------- /tests/data/SDFG/test7/test7-gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/data/SDFG/test7/test7-gold.json -------------------------------------------------------------------------------- /tests/log_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/log_analyzer.py -------------------------------------------------------------------------------- /tests/preprocess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/preprocess_data.py -------------------------------------------------------------------------------- /tests/test_codeviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/tree-sitter-codeviews/HEAD/tests/test_codeviews.py --------------------------------------------------------------------------------