├── .gitignore ├── .travis.yml ├── CHANGELOG ├── INSTALL ├── LICENCE ├── Makefile.in ├── README.txt ├── aclocal.m4 ├── c_src ├── Makefile ├── gsuffixtree │ ├── .gitignore │ ├── Makefile.in │ ├── gsuffix_tree.c │ ├── gsuffix_tree.h │ └── main.c └── suffixtree │ ├── .gitignore │ ├── Makefile.in │ ├── main.c │ ├── suffix_tree.c │ └── suffix_tree.h ├── configure ├── configure.ac ├── docs ├── _config.yml ├── doc │ ├── .gitignore │ ├── Erlide.png │ ├── README.txt │ ├── Wrangler1.JPG │ ├── Wrangler2.JPG │ ├── api_interface.html │ ├── api_refac.html │ ├── api_wrangler.html │ ├── behaviour_extraction │ │ ├── ast_tree.html │ │ ├── cluster.html │ │ ├── cluster_dict.html │ │ ├── cluster_folding.html │ │ ├── cluster_linking.html │ │ ├── cluster_mapping.html │ │ ├── da_map.html │ │ ├── erlang.png │ │ ├── fix_frontiers.html │ │ ├── fun_blocks.html │ │ ├── fun_blocks_fix.html │ │ ├── index.html │ │ ├── infer_behaviour.html │ │ ├── local_fix.html │ │ ├── modulegraph.png │ │ ├── modules-frame.html │ │ ├── overview-summary.html │ │ ├── overview.edoc │ │ ├── stylesheet.css │ │ ├── tree.html │ │ ├── tree_clustering.html │ │ └── tree_mapping.html │ ├── customize.JPG │ ├── erlang.png │ ├── gen_composite_refac.html │ ├── gen_refac.html │ ├── how_to_use.htm │ ├── index.html │ ├── inspec_examples.erl │ ├── inspec_lib.html │ ├── keysearch_keyfind.erl │ ├── modules-frame.html │ ├── overview-summary.html │ ├── overview.edoc │ ├── refac_add_an_import_attribute.erl │ ├── refac_api_migration.html │ ├── refac_apply_to_remote_call.erl │ ├── refac_batch_clone_elimination.erl │ ├── refac_batch_prefix_module.erl │ ├── refac_batch_rename_fun.erl │ ├── refac_expr_to_behav_instance.erl │ ├── refac_func_to_behav_instance.erl │ ├── refac_keysearch_to_keyfind.erl │ ├── refac_remove_an_argument.erl │ ├── refac_remove_an_import_attribute.erl │ ├── refac_specialise_a_function.erl │ ├── refac_swap_function_arguments.erl │ ├── refac_unfold_behav_instance.erl │ ├── regexp_re.erl │ ├── stylesheet.css │ ├── symbolic_evaluation │ │ ├── core │ │ │ ├── core_arit_calc.html │ │ │ ├── core_arit_simpl.html │ │ │ ├── core_arithmetics.html │ │ │ ├── core_boolean_operators.html │ │ │ ├── core_case.html │ │ │ ├── core_funApp.html │ │ │ ├── core_if.html │ │ │ ├── core_lists_concat.html │ │ │ ├── core_unreferenced_assign.html │ │ │ ├── erlang.png │ │ │ ├── index.html │ │ │ ├── modules-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview.edoc │ │ │ └── stylesheet.css │ │ ├── evaluator │ │ │ ├── erlang.png │ │ │ ├── eval_inline_variable.html │ │ │ ├── evaluator.html │ │ │ ├── index.html │ │ │ ├── modules-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview.edoc │ │ │ └── stylesheet.css │ │ └── refactorings │ │ │ ├── erlang.png │ │ │ ├── index.html │ │ │ ├── modules-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview.edoc │ │ │ ├── refac_all.html │ │ │ ├── refac_arit_calc.html │ │ │ ├── refac_arit_simpl.html │ │ │ ├── refac_arithmetics.html │ │ │ ├── refac_boolean_operators.html │ │ │ ├── refac_case.html │ │ │ ├── refac_funApp.html │ │ │ ├── refac_if.html │ │ │ ├── refac_inline_variable.html │ │ │ ├── refac_lists_concat.html │ │ │ ├── refac_unreferenced_assign.html │ │ │ └── stylesheet.css │ ├── wrangler_gen.html │ └── wrangler_refacs.html ├── getting-started.md ├── index.md ├── publications.md ├── wls │ ├── 1_highlight.png │ ├── 2_select.png │ ├── 3_input.png │ ├── 4_save.png │ ├── 5_form.png │ ├── 6_comment_out_spec.png │ └── wrangler_language_server.markdown └── wrangler.png ├── ebin ├── .gitignore ├── dynamic_menu_items ├── gen_refacs_2_testfiles │ ├── gen_refacs_2_testfile_ext_0.erl │ ├── gen_refacs_2_testfile_ext_1.erl │ ├── gen_refacs_2_testfile_ext_2.erl │ ├── gen_refacs_2_testfile_orig_0.erl │ ├── gen_refacs_2_testfile_orig_1.erl │ └── gen_refacs_2_testfile_orig_2.erl └── wrangler.app ├── elisp ├── .gitignore ├── derl.el ├── dired-aux.el ├── distel-ie.el ├── distel.el ├── edb.el ├── epmd.el ├── erl-service.el ├── erl.el ├── erlext.el ├── graphviz-dot-mode.el ├── net-fsm.el ├── patmatch.el ├── read-char-spec.el ├── wrangler-clearcase-hooks.el └── wrangler.el.src ├── examples └── behaviour_extraction │ ├── ets_dets │ ├── adapted_input │ │ ├── dets_eqc.erl │ │ └── ets_eqc.erl │ ├── automatic_output │ │ ├── common.erl │ │ ├── dets_eqc.erl │ │ └── ets_eqc.erl │ ├── manual_output │ │ ├── dets_eqc.erl │ │ ├── ets_eqc.erl │ │ └── general.erl │ └── original_input │ │ ├── dets_eqc.erl │ │ └── ets_eqc.erl │ └── freq_server │ ├── automatic_output │ ├── full_fsm.erl │ ├── full_fsm1.erl │ └── full_fsm2.erl │ ├── input │ ├── full_fsm1.erl │ └── full_fsm2.erl │ └── manual_output │ ├── full_fsm.erl │ ├── full_fsm1.erl │ └── full_fsm2.erl ├── include ├── .gitignore ├── wrangler.hrl └── wrangler_internal.hrl ├── priv ├── .gitignore ├── dialyzer_plt └── side_effect_plt ├── qc_test ├── eqc_clone.erl ├── eqc_fold_expr.erl ├── eqc_fold_macro.erl ├── eqc_fun_to_process.erl ├── eqc_gen_fun.erl ├── eqc_inline_var.erl ├── eqc_move_fun.erl ├── eqc_new_fun.erl ├── eqc_new_macro.erl ├── eqc_partition_export.erl ├── eqc_prettypr.erl ├── eqc_rename_fun.erl ├── eqc_rename_mod.erl ├── eqc_rename_var.erl ├── eqc_swap_args.erl ├── eqc_tuple.erl ├── eqc_unfold_app.erl └── refac_qc_rename.erl ├── rebar.config ├── rebar.lock ├── src ├── api_ast_traverse.erl ├── api_interface.erl ├── api_refac.erl ├── api_spec.erl ├── api_wrangler.erl ├── behaviour_extraction │ ├── ast_tree.erl │ ├── cluster.erl │ ├── cluster_dict.erl │ ├── cluster_folding.erl │ ├── cluster_linking.erl │ ├── cluster_mapping.erl │ ├── cluster_records.hrl │ ├── da_map.erl │ ├── edoc_args.erl │ ├── fix_frontiers.erl │ ├── fun_blocks.erl │ ├── fun_blocks_fix.erl │ ├── infer_behaviour.erl │ ├── local_fix.erl │ ├── tree.erl │ ├── tree_clustering.erl │ └── tree_mapping.erl ├── dict_to_map.erl ├── distel.erl ├── distel_ie.erl ├── emacs_inspec.erl ├── emacs_wrangler.erl ├── fdoc.erl ├── file_lister.erl ├── gen_composite_refac.erl ├── gen_composite_refacs │ ├── refac_batch_clone_elimination.erl │ ├── refac_batch_inline_vars.erl │ ├── refac_batch_prefix_module.erl │ ├── refac_expr_to_behav_instance.erl │ ├── refac_func_to_behav_instance.erl │ ├── refac_rename_op_arg.erl │ └── refac_unfold_behav_instance.erl ├── gen_refac.erl ├── gen_refac_2.erl ├── gen_refac_2_utils.erl ├── gen_refacs │ ├── refac_add_an_import_attribute.erl │ ├── refac_add_argument.erl │ ├── refac_add_callback.erl │ ├── refac_add_callbacks.erl │ ├── refac_add_op.erl │ ├── refac_add_op_arg.erl │ ├── refac_add_to_export.erl │ ├── refac_apply_to_remote_call.erl │ ├── refac_bug_cond.erl │ ├── refac_chunking.erl │ ├── refac_create_behav_instance.erl │ ├── refac_farm_intro.erl │ ├── refac_force_remove_arg.erl │ ├── refac_instantiate_calls.erl │ ├── refac_map_intro.erl │ ├── refac_new_dummy_argument.erl │ ├── refac_pipe_intro.erl │ ├── refac_remove_an_argument.erl │ ├── refac_remove_an_import_attribute.erl │ ├── refac_remove_behav_dec.erl │ ├── refac_rename_function.erl │ ├── refac_rm_op.erl │ ├── refac_rm_op_arg.erl │ ├── refac_specialise_a_function.erl │ ├── refac_swap_function_arguments.erl │ └── refac_swap_op_args.erl ├── gen_refacs_2 │ ├── gen_refacs_2_test_runner.erl │ ├── refac_new_dummy_argument2.erl │ ├── refac_rename_argument2.erl │ ├── refac_rename_function2.erl │ └── refac_swap_function_arguments2.erl ├── inspec_examples.erl ├── inspec_feedback_wrangler.erl ├── inspec_lib.erl ├── keysearch_keyfind.erl ├── otp_doc.erl ├── refac_add_a_tag.erl ├── refac_api_migration.erl ├── refac_batch_rename_fun.erl ├── refac_clone_evolution.erl ├── refac_comment_out_spec.erl ├── refac_copy_mod.erl ├── refac_duplicated_code.erl ├── refac_expr_search.erl ├── refac_fold_against_macro.erl ├── refac_fold_expression.erl ├── refac_fun_to_process.erl ├── refac_gen.erl ├── refac_inc_sim_code.erl ├── refac_inline_var.erl ├── refac_intro_new_var.erl ├── refac_intro_parallel.erl ├── refac_move_fun.erl ├── refac_new_fun.erl ├── refac_new_let.erl ├── refac_new_macro.erl ├── refac_qc_gen.erl ├── refac_regexp_to_re.erl ├── refac_register_pid.erl ├── refac_rename_fun.erl ├── refac_rename_mod.erl ├── refac_rename_process.erl ├── refac_rename_var.erl ├── refac_s_group.erl ├── refac_sim_code.erl ├── refac_sim_expr_search.erl ├── refac_tuple.erl ├── refac_unfold_fun_app.erl ├── regexp_re.erl ├── symbolic_evaluation │ ├── core │ │ ├── core_arit_calc.erl │ │ ├── core_arit_simpl.erl │ │ ├── core_arithmetics.erl │ │ ├── core_boolean_operators.erl │ │ ├── core_case.erl │ │ ├── core_funApp.erl │ │ ├── core_if.erl │ │ ├── core_lists_concat.erl │ │ ├── core_rem_begin_end.erl │ │ └── core_unreferenced_assign.erl │ ├── evaluator │ │ ├── eval.erl │ │ ├── eval_all.erl │ │ ├── eval_funApp.erl │ │ ├── eval_inline_variable.erl │ │ ├── eval_rem_begin_end.erl │ │ └── evaluator.erl │ ├── refactorings │ │ ├── refac.erl │ │ ├── refac_all.erl │ │ ├── refac_arit_calc.erl │ │ ├── refac_arit_simpl.erl │ │ ├── refac_arithmetics.erl │ │ ├── refac_boolean_operators.erl │ │ ├── refac_case.erl │ │ ├── refac_funApp.erl │ │ ├── refac_if.erl │ │ ├── refac_inline_variable.erl │ │ ├── refac_lists_concat.erl │ │ └── refac_unreferenced_assign.erl │ ├── tests │ │ ├── definitions │ │ │ ├── def.erl │ │ │ ├── def2.erl │ │ │ ├── def3.erl │ │ │ ├── def4.erl │ │ │ ├── def5.erl │ │ │ ├── def6.erl │ │ │ └── def7.erl │ │ ├── initial │ │ │ ├── test_arithmetics.erl │ │ │ ├── test_inline_variable.erl │ │ │ ├── test_unreferenced_assign.erl │ │ │ ├── tests_all.erl │ │ │ ├── tests_all_case.erl │ │ │ ├── tests_all_external.erl │ │ │ ├── tests_all_if.erl │ │ │ ├── tests_all_internal.erl │ │ │ ├── tests_arit_calc.erl │ │ │ ├── tests_arit_simpl.erl │ │ │ ├── tests_boolean_operators.erl │ │ │ ├── tests_case.erl │ │ │ ├── tests_funApp_external.erl │ │ │ ├── tests_funApp_internal.erl │ │ │ ├── tests_if.erl │ │ │ └── tests_lists_concat.erl │ │ └── transformed │ │ │ ├── Test Inline Variables Possibilities │ │ │ ├── Maximum Inline │ │ │ │ └── test_inline_variable.erl │ │ │ ├── Possibility 1 │ │ │ │ └── test_inline_variable.erl │ │ │ ├── Possibility 2 │ │ │ │ └── test_inline_variable.erl │ │ │ ├── Possibility 3 │ │ │ │ └── test_inline_variable.erl │ │ │ └── Possibility 4 │ │ │ │ └── test_inline_variable.erl │ │ │ ├── test_arithmetics.erl │ │ │ ├── test_unreferenced_assign.erl │ │ │ ├── tests_all.erl │ │ │ ├── tests_all_case.erl │ │ │ ├── tests_all_external.erl │ │ │ ├── tests_all_if.erl │ │ │ ├── tests_all_internal.erl │ │ │ ├── tests_arit_calc.erl │ │ │ ├── tests_arit_simpl.erl │ │ │ ├── tests_boolean_operators.erl │ │ │ ├── tests_case.erl │ │ │ ├── tests_funApp_external.erl │ │ │ ├── tests_funApp_internal.erl │ │ │ ├── tests_if.erl │ │ │ └── tests_lists_concat.erl │ └── utils │ │ ├── utils_convert.erl │ │ ├── utils_guards.erl │ │ ├── utils_match.erl │ │ ├── utils_subst.erl │ │ └── utils_transform.erl ├── wls │ ├── wls_code_action_fold_expression.erl │ ├── wls_code_action_generalise_fun.erl │ ├── wls_code_action_inline_var.erl │ ├── wls_code_action_move_fun.erl │ ├── wls_code_action_new_fun.erl │ ├── wls_code_action_new_macro.erl │ ├── wls_code_action_new_var.erl │ ├── wls_code_action_rename_fun.erl │ ├── wls_code_action_rename_var.erl │ ├── wls_code_actions.erl │ ├── wls_code_lens.erl │ ├── wls_code_lens_comment_out_spec.erl │ ├── wls_code_lens_form_exit.erl │ ├── wls_code_lens_form_refactor.erl │ ├── wls_core.hrl │ ├── wls_execute_command_provider.erl │ ├── wls_highlight.erl │ ├── wls_semantic_tokens.erl │ ├── wls_server.erl │ └── wls_utils.erl ├── wrangler.erl ├── wrangler_add_new_refac.erl ├── wrangler_annotate_ast.erl ├── wrangler_annotate_pid.erl ├── wrangler_anti_unification.erl ├── wrangler_ast_server.erl ├── wrangler_atom_annotation.erl ├── wrangler_atom_utils.erl ├── wrangler_backup_server.erl ├── wrangler_callgraph.erl ├── wrangler_callgraph_server.erl ├── wrangler_cmd_server.erl ├── wrangler_code_inspector_lib.erl ├── wrangler_code_search_utils.erl ├── wrangler_comment_scan.erl ├── wrangler_epp.erl ├── wrangler_epp_dodger.erl ├── wrangler_error_logger.erl ├── wrangler_expand_rule.erl ├── wrangler_gen.erl ├── wrangler_gen_refac_server.erl ├── wrangler_generalised_unification.erl ├── wrangler_io.erl ├── wrangler_misc.erl ├── wrangler_modularity_inspection.erl ├── wrangler_module_graph.erl ├── wrangler_modulegraph_server.erl ├── wrangler_parse.yrl ├── wrangler_prettypr.erl ├── wrangler_prettypr_0.erl ├── wrangler_preview_server.erl ├── wrangler_recomment.erl ├── wrangler_refacs.erl ├── wrangler_scan.erl ├── wrangler_scan_with_layout.erl ├── wrangler_side_effect.erl ├── wrangler_slice.erl ├── wrangler_slice_new.erl ├── wrangler_suffix_tree.erl ├── wrangler_sup.erl ├── wrangler_syntax.erl ├── wrangler_syntax_lib.erl ├── wrangler_type_info.erl1 ├── wrangler_undo_server.erl ├── wrangler_unification.erl └── wrangler_write_file.erl └── vsn.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/CHANGELOG -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/README.txt -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /c_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/c_src/Makefile -------------------------------------------------------------------------------- /c_src/gsuffixtree/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /c_src/gsuffixtree/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/c_src/gsuffixtree/Makefile.in -------------------------------------------------------------------------------- /c_src/gsuffixtree/gsuffix_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/c_src/gsuffixtree/gsuffix_tree.c -------------------------------------------------------------------------------- /c_src/gsuffixtree/gsuffix_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/c_src/gsuffixtree/gsuffix_tree.h -------------------------------------------------------------------------------- /c_src/gsuffixtree/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/c_src/gsuffixtree/main.c -------------------------------------------------------------------------------- /c_src/suffixtree/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /c_src/suffixtree/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/c_src/suffixtree/Makefile.in -------------------------------------------------------------------------------- /c_src/suffixtree/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/c_src/suffixtree/main.c -------------------------------------------------------------------------------- /c_src/suffixtree/suffix_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/c_src/suffixtree/suffix_tree.c -------------------------------------------------------------------------------- /c_src/suffixtree/suffix_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/c_src/suffixtree/suffix_tree.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | name: "" 2 | title: null 3 | -------------------------------------------------------------------------------- /docs/doc/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | stylesheet.css 3 | erlang.png 4 | edoc-info 5 | *.erl 6 | -------------------------------------------------------------------------------- /docs/doc/Erlide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/Erlide.png -------------------------------------------------------------------------------- /docs/doc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/README.txt -------------------------------------------------------------------------------- /docs/doc/Wrangler1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/Wrangler1.JPG -------------------------------------------------------------------------------- /docs/doc/Wrangler2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/Wrangler2.JPG -------------------------------------------------------------------------------- /docs/doc/api_interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/api_interface.html -------------------------------------------------------------------------------- /docs/doc/api_refac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/api_refac.html -------------------------------------------------------------------------------- /docs/doc/api_wrangler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/api_wrangler.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/ast_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/ast_tree.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/cluster.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/cluster_dict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/cluster_dict.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/cluster_folding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/cluster_folding.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/cluster_linking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/cluster_linking.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/cluster_mapping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/cluster_mapping.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/da_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/da_map.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/erlang.png -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/fix_frontiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/fix_frontiers.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/fun_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/fun_blocks.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/fun_blocks_fix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/fun_blocks_fix.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/index.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/infer_behaviour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/infer_behaviour.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/local_fix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/local_fix.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/modulegraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/modulegraph.png -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/modules-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/modules-frame.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/overview-summary.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/overview.edoc -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/stylesheet.css -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/tree.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/tree_clustering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/tree_clustering.html -------------------------------------------------------------------------------- /docs/doc/behaviour_extraction/tree_mapping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/behaviour_extraction/tree_mapping.html -------------------------------------------------------------------------------- /docs/doc/customize.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/customize.JPG -------------------------------------------------------------------------------- /docs/doc/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/erlang.png -------------------------------------------------------------------------------- /docs/doc/gen_composite_refac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/gen_composite_refac.html -------------------------------------------------------------------------------- /docs/doc/gen_refac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/gen_refac.html -------------------------------------------------------------------------------- /docs/doc/how_to_use.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/how_to_use.htm -------------------------------------------------------------------------------- /docs/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/index.html -------------------------------------------------------------------------------- /docs/doc/inspec_examples.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/inspec_examples.erl -------------------------------------------------------------------------------- /docs/doc/inspec_lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/inspec_lib.html -------------------------------------------------------------------------------- /docs/doc/keysearch_keyfind.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/keysearch_keyfind.erl -------------------------------------------------------------------------------- /docs/doc/modules-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/modules-frame.html -------------------------------------------------------------------------------- /docs/doc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/overview-summary.html -------------------------------------------------------------------------------- /docs/doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/overview.edoc -------------------------------------------------------------------------------- /docs/doc/refac_add_an_import_attribute.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_add_an_import_attribute.erl -------------------------------------------------------------------------------- /docs/doc/refac_api_migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_api_migration.html -------------------------------------------------------------------------------- /docs/doc/refac_apply_to_remote_call.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_apply_to_remote_call.erl -------------------------------------------------------------------------------- /docs/doc/refac_batch_clone_elimination.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_batch_clone_elimination.erl -------------------------------------------------------------------------------- /docs/doc/refac_batch_prefix_module.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_batch_prefix_module.erl -------------------------------------------------------------------------------- /docs/doc/refac_batch_rename_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_batch_rename_fun.erl -------------------------------------------------------------------------------- /docs/doc/refac_expr_to_behav_instance.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_expr_to_behav_instance.erl -------------------------------------------------------------------------------- /docs/doc/refac_func_to_behav_instance.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_func_to_behav_instance.erl -------------------------------------------------------------------------------- /docs/doc/refac_keysearch_to_keyfind.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_keysearch_to_keyfind.erl -------------------------------------------------------------------------------- /docs/doc/refac_remove_an_argument.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_remove_an_argument.erl -------------------------------------------------------------------------------- /docs/doc/refac_remove_an_import_attribute.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_remove_an_import_attribute.erl -------------------------------------------------------------------------------- /docs/doc/refac_specialise_a_function.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_specialise_a_function.erl -------------------------------------------------------------------------------- /docs/doc/refac_swap_function_arguments.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_swap_function_arguments.erl -------------------------------------------------------------------------------- /docs/doc/refac_unfold_behav_instance.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/refac_unfold_behav_instance.erl -------------------------------------------------------------------------------- /docs/doc/regexp_re.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/regexp_re.erl -------------------------------------------------------------------------------- /docs/doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/stylesheet.css -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/core_arit_calc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/core_arit_calc.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/core_arit_simpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/core_arit_simpl.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/core_arithmetics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/core_arithmetics.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/core_boolean_operators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/core_boolean_operators.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/core_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/core_case.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/core_funApp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/core_funApp.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/core_if.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/core_if.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/core_lists_concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/core_lists_concat.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/core_unreferenced_assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/core_unreferenced_assign.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/erlang.png -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/index.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/modules-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/modules-frame.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/overview-summary.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/overview.edoc -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/core/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/core/stylesheet.css -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/evaluator/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/evaluator/erlang.png -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/evaluator/eval_inline_variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/evaluator/eval_inline_variable.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/evaluator/evaluator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/evaluator/evaluator.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/evaluator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/evaluator/index.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/evaluator/modules-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/evaluator/modules-frame.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/evaluator/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/evaluator/overview-summary.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/evaluator/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/evaluator/overview.edoc -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/evaluator/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/evaluator/stylesheet.css -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/erlang.png -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/index.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/modules-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/modules-frame.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/overview-summary.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/overview.edoc -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_all.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_arit_calc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_arit_calc.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_arit_simpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_arit_simpl.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_arithmetics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_arithmetics.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_boolean_operators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_boolean_operators.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_case.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_funApp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_funApp.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_if.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_if.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_inline_variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_inline_variable.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_lists_concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_lists_concat.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/refac_unreferenced_assign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/refac_unreferenced_assign.html -------------------------------------------------------------------------------- /docs/doc/symbolic_evaluation/refactorings/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/symbolic_evaluation/refactorings/stylesheet.css -------------------------------------------------------------------------------- /docs/doc/wrangler_gen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/wrangler_gen.html -------------------------------------------------------------------------------- /docs/doc/wrangler_refacs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/doc/wrangler_refacs.html -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/publications.md -------------------------------------------------------------------------------- /docs/wls/1_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/wls/1_highlight.png -------------------------------------------------------------------------------- /docs/wls/2_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/wls/2_select.png -------------------------------------------------------------------------------- /docs/wls/3_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/wls/3_input.png -------------------------------------------------------------------------------- /docs/wls/4_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/wls/4_save.png -------------------------------------------------------------------------------- /docs/wls/5_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/wls/5_form.png -------------------------------------------------------------------------------- /docs/wls/6_comment_out_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/wls/6_comment_out_spec.png -------------------------------------------------------------------------------- /docs/wls/wrangler_language_server.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/wls/wrangler_language_server.markdown -------------------------------------------------------------------------------- /docs/wrangler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/docs/wrangler.png -------------------------------------------------------------------------------- /ebin/.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | -------------------------------------------------------------------------------- /ebin/dynamic_menu_items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/ebin/dynamic_menu_items -------------------------------------------------------------------------------- /ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_ext_0.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_ext_0.erl -------------------------------------------------------------------------------- /ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_ext_1.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_ext_1.erl -------------------------------------------------------------------------------- /ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_ext_2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_ext_2.erl -------------------------------------------------------------------------------- /ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_orig_0.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_orig_0.erl -------------------------------------------------------------------------------- /ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_orig_1.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_orig_1.erl -------------------------------------------------------------------------------- /ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_orig_2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/ebin/gen_refacs_2_testfiles/gen_refacs_2_testfile_orig_2.erl -------------------------------------------------------------------------------- /ebin/wrangler.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/ebin/wrangler.app -------------------------------------------------------------------------------- /elisp/.gitignore: -------------------------------------------------------------------------------- 1 | wrangler.el 2 | -------------------------------------------------------------------------------- /elisp/derl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/derl.el -------------------------------------------------------------------------------- /elisp/dired-aux.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/dired-aux.el -------------------------------------------------------------------------------- /elisp/distel-ie.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/distel-ie.el -------------------------------------------------------------------------------- /elisp/distel.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/distel.el -------------------------------------------------------------------------------- /elisp/edb.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/edb.el -------------------------------------------------------------------------------- /elisp/epmd.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/epmd.el -------------------------------------------------------------------------------- /elisp/erl-service.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/erl-service.el -------------------------------------------------------------------------------- /elisp/erl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/erl.el -------------------------------------------------------------------------------- /elisp/erlext.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/erlext.el -------------------------------------------------------------------------------- /elisp/graphviz-dot-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/graphviz-dot-mode.el -------------------------------------------------------------------------------- /elisp/net-fsm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/net-fsm.el -------------------------------------------------------------------------------- /elisp/patmatch.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/patmatch.el -------------------------------------------------------------------------------- /elisp/read-char-spec.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/read-char-spec.el -------------------------------------------------------------------------------- /elisp/wrangler-clearcase-hooks.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/wrangler-clearcase-hooks.el -------------------------------------------------------------------------------- /elisp/wrangler.el.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/elisp/wrangler.el.src -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/adapted_input/dets_eqc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/adapted_input/dets_eqc.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/adapted_input/ets_eqc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/adapted_input/ets_eqc.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/automatic_output/common.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/automatic_output/common.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/automatic_output/dets_eqc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/automatic_output/dets_eqc.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/automatic_output/ets_eqc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/automatic_output/ets_eqc.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/manual_output/dets_eqc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/manual_output/dets_eqc.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/manual_output/ets_eqc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/manual_output/ets_eqc.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/manual_output/general.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/manual_output/general.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/original_input/dets_eqc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/original_input/dets_eqc.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/ets_dets/original_input/ets_eqc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/ets_dets/original_input/ets_eqc.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/freq_server/automatic_output/full_fsm.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/freq_server/automatic_output/full_fsm.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/freq_server/automatic_output/full_fsm1.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/freq_server/automatic_output/full_fsm1.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/freq_server/automatic_output/full_fsm2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/freq_server/automatic_output/full_fsm2.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/freq_server/input/full_fsm1.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/freq_server/input/full_fsm1.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/freq_server/input/full_fsm2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/freq_server/input/full_fsm2.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/freq_server/manual_output/full_fsm.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/freq_server/manual_output/full_fsm.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/freq_server/manual_output/full_fsm1.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/freq_server/manual_output/full_fsm1.erl -------------------------------------------------------------------------------- /examples/behaviour_extraction/freq_server/manual_output/full_fsm2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/examples/behaviour_extraction/freq_server/manual_output/full_fsm2.erl -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | wrangler_internal.hrl 2 | -------------------------------------------------------------------------------- /include/wrangler.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/include/wrangler.hrl -------------------------------------------------------------------------------- /include/wrangler_internal.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/include/wrangler_internal.hrl -------------------------------------------------------------------------------- /priv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/priv/.gitignore -------------------------------------------------------------------------------- /priv/dialyzer_plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/priv/dialyzer_plt -------------------------------------------------------------------------------- /priv/side_effect_plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/priv/side_effect_plt -------------------------------------------------------------------------------- /qc_test/eqc_clone.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_clone.erl -------------------------------------------------------------------------------- /qc_test/eqc_fold_expr.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_fold_expr.erl -------------------------------------------------------------------------------- /qc_test/eqc_fold_macro.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_fold_macro.erl -------------------------------------------------------------------------------- /qc_test/eqc_fun_to_process.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_fun_to_process.erl -------------------------------------------------------------------------------- /qc_test/eqc_gen_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_gen_fun.erl -------------------------------------------------------------------------------- /qc_test/eqc_inline_var.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_inline_var.erl -------------------------------------------------------------------------------- /qc_test/eqc_move_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_move_fun.erl -------------------------------------------------------------------------------- /qc_test/eqc_new_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_new_fun.erl -------------------------------------------------------------------------------- /qc_test/eqc_new_macro.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_new_macro.erl -------------------------------------------------------------------------------- /qc_test/eqc_partition_export.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_partition_export.erl -------------------------------------------------------------------------------- /qc_test/eqc_prettypr.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_prettypr.erl -------------------------------------------------------------------------------- /qc_test/eqc_rename_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_rename_fun.erl -------------------------------------------------------------------------------- /qc_test/eqc_rename_mod.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_rename_mod.erl -------------------------------------------------------------------------------- /qc_test/eqc_rename_var.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_rename_var.erl -------------------------------------------------------------------------------- /qc_test/eqc_swap_args.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_swap_args.erl -------------------------------------------------------------------------------- /qc_test/eqc_tuple.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_tuple.erl -------------------------------------------------------------------------------- /qc_test/eqc_unfold_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/eqc_unfold_app.erl -------------------------------------------------------------------------------- /qc_test/refac_qc_rename.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/qc_test/refac_qc_rename.erl -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /src/api_ast_traverse.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/api_ast_traverse.erl -------------------------------------------------------------------------------- /src/api_interface.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/api_interface.erl -------------------------------------------------------------------------------- /src/api_refac.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/api_refac.erl -------------------------------------------------------------------------------- /src/api_spec.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/api_spec.erl -------------------------------------------------------------------------------- /src/api_wrangler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/api_wrangler.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/ast_tree.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/ast_tree.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/cluster.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/cluster.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/cluster_dict.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/cluster_dict.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/cluster_folding.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/cluster_folding.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/cluster_linking.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/cluster_linking.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/cluster_mapping.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/cluster_mapping.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/cluster_records.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/cluster_records.hrl -------------------------------------------------------------------------------- /src/behaviour_extraction/da_map.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/da_map.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/edoc_args.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/edoc_args.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/fix_frontiers.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/fix_frontiers.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/fun_blocks.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/fun_blocks.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/fun_blocks_fix.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/fun_blocks_fix.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/infer_behaviour.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/infer_behaviour.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/local_fix.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/local_fix.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/tree.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/tree.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/tree_clustering.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/tree_clustering.erl -------------------------------------------------------------------------------- /src/behaviour_extraction/tree_mapping.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/behaviour_extraction/tree_mapping.erl -------------------------------------------------------------------------------- /src/dict_to_map.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/dict_to_map.erl -------------------------------------------------------------------------------- /src/distel.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/distel.erl -------------------------------------------------------------------------------- /src/distel_ie.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/distel_ie.erl -------------------------------------------------------------------------------- /src/emacs_inspec.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/emacs_inspec.erl -------------------------------------------------------------------------------- /src/emacs_wrangler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/emacs_wrangler.erl -------------------------------------------------------------------------------- /src/fdoc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/fdoc.erl -------------------------------------------------------------------------------- /src/file_lister.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/file_lister.erl -------------------------------------------------------------------------------- /src/gen_composite_refac.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_composite_refac.erl -------------------------------------------------------------------------------- /src/gen_composite_refacs/refac_batch_clone_elimination.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_composite_refacs/refac_batch_clone_elimination.erl -------------------------------------------------------------------------------- /src/gen_composite_refacs/refac_batch_inline_vars.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_composite_refacs/refac_batch_inline_vars.erl -------------------------------------------------------------------------------- /src/gen_composite_refacs/refac_batch_prefix_module.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_composite_refacs/refac_batch_prefix_module.erl -------------------------------------------------------------------------------- /src/gen_composite_refacs/refac_expr_to_behav_instance.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_composite_refacs/refac_expr_to_behav_instance.erl -------------------------------------------------------------------------------- /src/gen_composite_refacs/refac_func_to_behav_instance.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_composite_refacs/refac_func_to_behav_instance.erl -------------------------------------------------------------------------------- /src/gen_composite_refacs/refac_rename_op_arg.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_composite_refacs/refac_rename_op_arg.erl -------------------------------------------------------------------------------- /src/gen_composite_refacs/refac_unfold_behav_instance.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_composite_refacs/refac_unfold_behav_instance.erl -------------------------------------------------------------------------------- /src/gen_refac.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refac.erl -------------------------------------------------------------------------------- /src/gen_refac_2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refac_2.erl -------------------------------------------------------------------------------- /src/gen_refac_2_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refac_2_utils.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_add_an_import_attribute.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_add_an_import_attribute.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_add_argument.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_add_argument.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_add_callback.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_add_callback.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_add_callbacks.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_add_callbacks.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_add_op.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_add_op.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_add_op_arg.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_add_op_arg.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_add_to_export.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_add_to_export.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_apply_to_remote_call.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_apply_to_remote_call.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_bug_cond.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_bug_cond.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_chunking.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_chunking.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_create_behav_instance.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_create_behav_instance.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_farm_intro.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_farm_intro.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_force_remove_arg.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_force_remove_arg.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_instantiate_calls.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_instantiate_calls.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_map_intro.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_map_intro.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_new_dummy_argument.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_new_dummy_argument.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_pipe_intro.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_pipe_intro.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_remove_an_argument.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_remove_an_argument.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_remove_an_import_attribute.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_remove_an_import_attribute.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_remove_behav_dec.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_remove_behav_dec.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_rename_function.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_rename_function.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_rm_op.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_rm_op.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_rm_op_arg.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_rm_op_arg.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_specialise_a_function.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_specialise_a_function.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_swap_function_arguments.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_swap_function_arguments.erl -------------------------------------------------------------------------------- /src/gen_refacs/refac_swap_op_args.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs/refac_swap_op_args.erl -------------------------------------------------------------------------------- /src/gen_refacs_2/gen_refacs_2_test_runner.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs_2/gen_refacs_2_test_runner.erl -------------------------------------------------------------------------------- /src/gen_refacs_2/refac_new_dummy_argument2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs_2/refac_new_dummy_argument2.erl -------------------------------------------------------------------------------- /src/gen_refacs_2/refac_rename_argument2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs_2/refac_rename_argument2.erl -------------------------------------------------------------------------------- /src/gen_refacs_2/refac_rename_function2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs_2/refac_rename_function2.erl -------------------------------------------------------------------------------- /src/gen_refacs_2/refac_swap_function_arguments2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/gen_refacs_2/refac_swap_function_arguments2.erl -------------------------------------------------------------------------------- /src/inspec_examples.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/inspec_examples.erl -------------------------------------------------------------------------------- /src/inspec_feedback_wrangler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/inspec_feedback_wrangler.erl -------------------------------------------------------------------------------- /src/inspec_lib.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/inspec_lib.erl -------------------------------------------------------------------------------- /src/keysearch_keyfind.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/keysearch_keyfind.erl -------------------------------------------------------------------------------- /src/otp_doc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/otp_doc.erl -------------------------------------------------------------------------------- /src/refac_add_a_tag.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_add_a_tag.erl -------------------------------------------------------------------------------- /src/refac_api_migration.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_api_migration.erl -------------------------------------------------------------------------------- /src/refac_batch_rename_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_batch_rename_fun.erl -------------------------------------------------------------------------------- /src/refac_clone_evolution.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_clone_evolution.erl -------------------------------------------------------------------------------- /src/refac_comment_out_spec.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_comment_out_spec.erl -------------------------------------------------------------------------------- /src/refac_copy_mod.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_copy_mod.erl -------------------------------------------------------------------------------- /src/refac_duplicated_code.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_duplicated_code.erl -------------------------------------------------------------------------------- /src/refac_expr_search.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_expr_search.erl -------------------------------------------------------------------------------- /src/refac_fold_against_macro.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_fold_against_macro.erl -------------------------------------------------------------------------------- /src/refac_fold_expression.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_fold_expression.erl -------------------------------------------------------------------------------- /src/refac_fun_to_process.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_fun_to_process.erl -------------------------------------------------------------------------------- /src/refac_gen.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_gen.erl -------------------------------------------------------------------------------- /src/refac_inc_sim_code.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_inc_sim_code.erl -------------------------------------------------------------------------------- /src/refac_inline_var.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_inline_var.erl -------------------------------------------------------------------------------- /src/refac_intro_new_var.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_intro_new_var.erl -------------------------------------------------------------------------------- /src/refac_intro_parallel.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_intro_parallel.erl -------------------------------------------------------------------------------- /src/refac_move_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_move_fun.erl -------------------------------------------------------------------------------- /src/refac_new_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_new_fun.erl -------------------------------------------------------------------------------- /src/refac_new_let.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_new_let.erl -------------------------------------------------------------------------------- /src/refac_new_macro.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_new_macro.erl -------------------------------------------------------------------------------- /src/refac_qc_gen.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_qc_gen.erl -------------------------------------------------------------------------------- /src/refac_regexp_to_re.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_regexp_to_re.erl -------------------------------------------------------------------------------- /src/refac_register_pid.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_register_pid.erl -------------------------------------------------------------------------------- /src/refac_rename_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_rename_fun.erl -------------------------------------------------------------------------------- /src/refac_rename_mod.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_rename_mod.erl -------------------------------------------------------------------------------- /src/refac_rename_process.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_rename_process.erl -------------------------------------------------------------------------------- /src/refac_rename_var.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_rename_var.erl -------------------------------------------------------------------------------- /src/refac_s_group.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_s_group.erl -------------------------------------------------------------------------------- /src/refac_sim_code.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_sim_code.erl -------------------------------------------------------------------------------- /src/refac_sim_expr_search.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_sim_expr_search.erl -------------------------------------------------------------------------------- /src/refac_tuple.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_tuple.erl -------------------------------------------------------------------------------- /src/refac_unfold_fun_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/refac_unfold_fun_app.erl -------------------------------------------------------------------------------- /src/regexp_re.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/regexp_re.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_arit_calc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_arit_calc.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_arit_simpl.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_arit_simpl.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_arithmetics.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_arithmetics.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_boolean_operators.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_boolean_operators.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_case.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_case.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_funApp.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_funApp.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_if.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_if.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_lists_concat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_lists_concat.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_rem_begin_end.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_rem_begin_end.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/core/core_unreferenced_assign.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/core/core_unreferenced_assign.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/evaluator/eval.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/evaluator/eval.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/evaluator/eval_all.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/evaluator/eval_all.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/evaluator/eval_funApp.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/evaluator/eval_funApp.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/evaluator/eval_inline_variable.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/evaluator/eval_inline_variable.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/evaluator/eval_rem_begin_end.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/evaluator/eval_rem_begin_end.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/evaluator/evaluator.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/evaluator/evaluator.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_all.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_all.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_arit_calc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_arit_calc.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_arit_simpl.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_arit_simpl.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_arithmetics.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_arithmetics.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_boolean_operators.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_boolean_operators.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_case.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_case.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_funApp.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_funApp.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_if.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_if.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_inline_variable.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_inline_variable.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_lists_concat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_lists_concat.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/refactorings/refac_unreferenced_assign.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/refactorings/refac_unreferenced_assign.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/definitions/def.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/definitions/def.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/definitions/def2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/definitions/def2.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/definitions/def3.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/definitions/def3.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/definitions/def4.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/definitions/def4.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/definitions/def5.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/definitions/def5.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/definitions/def6.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/definitions/def6.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/definitions/def7.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/definitions/def7.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/test_arithmetics.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/test_arithmetics.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/test_inline_variable.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/test_inline_variable.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/test_unreferenced_assign.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/test_unreferenced_assign.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_all.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_all.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_all_case.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_all_case.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_all_external.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_all_external.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_all_if.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_all_if.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_all_internal.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_all_internal.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_arit_calc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_arit_calc.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_arit_simpl.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_arit_simpl.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_boolean_operators.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_boolean_operators.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_case.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_case.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_funApp_external.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_funApp_external.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_funApp_internal.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_funApp_internal.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_if.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_if.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/initial/tests_lists_concat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/initial/tests_lists_concat.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Maximum Inline/test_inline_variable.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Maximum Inline/test_inline_variable.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Possibility 1/test_inline_variable.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Possibility 1/test_inline_variable.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Possibility 2/test_inline_variable.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Possibility 2/test_inline_variable.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Possibility 3/test_inline_variable.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Possibility 3/test_inline_variable.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Possibility 4/test_inline_variable.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/Test Inline Variables Possibilities/Possibility 4/test_inline_variable.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/test_arithmetics.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/test_arithmetics.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/test_unreferenced_assign.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/test_unreferenced_assign.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_all.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_all.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_all_case.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_all_case.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_all_external.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_all_external.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_all_if.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_all_if.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_all_internal.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_all_internal.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_arit_calc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_arit_calc.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_arit_simpl.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_arit_simpl.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_boolean_operators.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_boolean_operators.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_case.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_case.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_funApp_external.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_funApp_external.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_funApp_internal.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_funApp_internal.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_if.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_if.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/tests/transformed/tests_lists_concat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/tests/transformed/tests_lists_concat.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/utils/utils_convert.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/utils/utils_convert.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/utils/utils_guards.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/utils/utils_guards.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/utils/utils_match.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/utils/utils_match.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/utils/utils_subst.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/utils/utils_subst.erl -------------------------------------------------------------------------------- /src/symbolic_evaluation/utils/utils_transform.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/symbolic_evaluation/utils/utils_transform.erl -------------------------------------------------------------------------------- /src/wls/wls_code_action_fold_expression.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_action_fold_expression.erl -------------------------------------------------------------------------------- /src/wls/wls_code_action_generalise_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_action_generalise_fun.erl -------------------------------------------------------------------------------- /src/wls/wls_code_action_inline_var.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_action_inline_var.erl -------------------------------------------------------------------------------- /src/wls/wls_code_action_move_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_action_move_fun.erl -------------------------------------------------------------------------------- /src/wls/wls_code_action_new_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_action_new_fun.erl -------------------------------------------------------------------------------- /src/wls/wls_code_action_new_macro.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_action_new_macro.erl -------------------------------------------------------------------------------- /src/wls/wls_code_action_new_var.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_action_new_var.erl -------------------------------------------------------------------------------- /src/wls/wls_code_action_rename_fun.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_action_rename_fun.erl -------------------------------------------------------------------------------- /src/wls/wls_code_action_rename_var.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_action_rename_var.erl -------------------------------------------------------------------------------- /src/wls/wls_code_actions.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_actions.erl -------------------------------------------------------------------------------- /src/wls/wls_code_lens.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_lens.erl -------------------------------------------------------------------------------- /src/wls/wls_code_lens_comment_out_spec.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_lens_comment_out_spec.erl -------------------------------------------------------------------------------- /src/wls/wls_code_lens_form_exit.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_lens_form_exit.erl -------------------------------------------------------------------------------- /src/wls/wls_code_lens_form_refactor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_code_lens_form_refactor.erl -------------------------------------------------------------------------------- /src/wls/wls_core.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_core.hrl -------------------------------------------------------------------------------- /src/wls/wls_execute_command_provider.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_execute_command_provider.erl -------------------------------------------------------------------------------- /src/wls/wls_highlight.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_highlight.erl -------------------------------------------------------------------------------- /src/wls/wls_semantic_tokens.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_semantic_tokens.erl -------------------------------------------------------------------------------- /src/wls/wls_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_server.erl -------------------------------------------------------------------------------- /src/wls/wls_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wls/wls_utils.erl -------------------------------------------------------------------------------- /src/wrangler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler.erl -------------------------------------------------------------------------------- /src/wrangler_add_new_refac.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_add_new_refac.erl -------------------------------------------------------------------------------- /src/wrangler_annotate_ast.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_annotate_ast.erl -------------------------------------------------------------------------------- /src/wrangler_annotate_pid.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_annotate_pid.erl -------------------------------------------------------------------------------- /src/wrangler_anti_unification.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_anti_unification.erl -------------------------------------------------------------------------------- /src/wrangler_ast_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_ast_server.erl -------------------------------------------------------------------------------- /src/wrangler_atom_annotation.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_atom_annotation.erl -------------------------------------------------------------------------------- /src/wrangler_atom_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_atom_utils.erl -------------------------------------------------------------------------------- /src/wrangler_backup_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_backup_server.erl -------------------------------------------------------------------------------- /src/wrangler_callgraph.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_callgraph.erl -------------------------------------------------------------------------------- /src/wrangler_callgraph_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_callgraph_server.erl -------------------------------------------------------------------------------- /src/wrangler_cmd_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_cmd_server.erl -------------------------------------------------------------------------------- /src/wrangler_code_inspector_lib.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_code_inspector_lib.erl -------------------------------------------------------------------------------- /src/wrangler_code_search_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_code_search_utils.erl -------------------------------------------------------------------------------- /src/wrangler_comment_scan.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_comment_scan.erl -------------------------------------------------------------------------------- /src/wrangler_epp.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_epp.erl -------------------------------------------------------------------------------- /src/wrangler_epp_dodger.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_epp_dodger.erl -------------------------------------------------------------------------------- /src/wrangler_error_logger.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_error_logger.erl -------------------------------------------------------------------------------- /src/wrangler_expand_rule.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_expand_rule.erl -------------------------------------------------------------------------------- /src/wrangler_gen.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_gen.erl -------------------------------------------------------------------------------- /src/wrangler_gen_refac_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_gen_refac_server.erl -------------------------------------------------------------------------------- /src/wrangler_generalised_unification.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_generalised_unification.erl -------------------------------------------------------------------------------- /src/wrangler_io.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_io.erl -------------------------------------------------------------------------------- /src/wrangler_misc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_misc.erl -------------------------------------------------------------------------------- /src/wrangler_modularity_inspection.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_modularity_inspection.erl -------------------------------------------------------------------------------- /src/wrangler_module_graph.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_module_graph.erl -------------------------------------------------------------------------------- /src/wrangler_modulegraph_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_modulegraph_server.erl -------------------------------------------------------------------------------- /src/wrangler_parse.yrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_parse.yrl -------------------------------------------------------------------------------- /src/wrangler_prettypr.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_prettypr.erl -------------------------------------------------------------------------------- /src/wrangler_prettypr_0.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_prettypr_0.erl -------------------------------------------------------------------------------- /src/wrangler_preview_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_preview_server.erl -------------------------------------------------------------------------------- /src/wrangler_recomment.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_recomment.erl -------------------------------------------------------------------------------- /src/wrangler_refacs.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_refacs.erl -------------------------------------------------------------------------------- /src/wrangler_scan.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_scan.erl -------------------------------------------------------------------------------- /src/wrangler_scan_with_layout.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_scan_with_layout.erl -------------------------------------------------------------------------------- /src/wrangler_side_effect.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_side_effect.erl -------------------------------------------------------------------------------- /src/wrangler_slice.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_slice.erl -------------------------------------------------------------------------------- /src/wrangler_slice_new.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_slice_new.erl -------------------------------------------------------------------------------- /src/wrangler_suffix_tree.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_suffix_tree.erl -------------------------------------------------------------------------------- /src/wrangler_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_sup.erl -------------------------------------------------------------------------------- /src/wrangler_syntax.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_syntax.erl -------------------------------------------------------------------------------- /src/wrangler_syntax_lib.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_syntax_lib.erl -------------------------------------------------------------------------------- /src/wrangler_type_info.erl1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_type_info.erl1 -------------------------------------------------------------------------------- /src/wrangler_undo_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_undo_server.erl -------------------------------------------------------------------------------- /src/wrangler_unification.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_unification.erl -------------------------------------------------------------------------------- /src/wrangler_write_file.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RefactoringTools/wrangler/HEAD/src/wrangler_write_file.erl -------------------------------------------------------------------------------- /vsn.mk: -------------------------------------------------------------------------------- 1 | VERSION = 1.2.0 2 | --------------------------------------------------------------------------------