├── .envrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── check-credits.sh ├── clippy.toml ├── default.nix ├── docs └── elm-pair-commercial-license.pdf ├── editor-integrations ├── neovim │ ├── elm-pair │ ├── ftplugin │ │ └── elm.vim │ └── lua │ │ └── elm-pair.lua └── vscode │ ├── .vscodeignore │ ├── extension.js │ ├── package.json │ └── tests.js ├── elm-pair.com ├── .gitignore ├── build.sh ├── changelog-to-news.py ├── config.toml ├── content │ ├── home.md │ ├── install │ │ ├── index.md │ │ ├── neovim-nix-home-manager.md │ │ ├── neovim-packer-nvim.md │ │ ├── neovim-vim-plug.md │ │ ├── vscode-marketplace.md │ │ └── vscode-nix-home-manager.md │ ├── news │ │ └── _index.md │ ├── privacy.md │ └── support.md ├── static │ ├── icon.png │ ├── imports.gif │ ├── logo.png │ ├── logo.svg │ ├── renaming.gif │ ├── style.css │ └── vscode-install-screenshot.png └── templates │ ├── base.html │ ├── index.html │ ├── news.html │ ├── page.html │ └── shortcodes │ └── purchase.html ├── elm-pair ├── Cargo.lock ├── Cargo.toml ├── README.md ├── project │ └── elm.json ├── rustfmt.toml ├── src │ ├── analysis_thread.rs │ ├── compilation_thread.rs │ ├── credits.txt │ ├── editor_listener_thread.rs │ ├── editors │ │ ├── mod.rs │ │ ├── neovim.rs │ │ └── vscode.rs │ ├── elm │ │ ├── compiler.rs │ │ ├── dependencies.rs │ │ ├── io │ │ │ ├── mod.rs │ │ │ ├── parse_elm_json.rs │ │ │ ├── parse_elm_module.rs │ │ │ └── parse_elm_stuff_idat.rs │ │ ├── mod.rs │ │ ├── module_name.rs │ │ ├── project.rs │ │ ├── queries │ │ │ ├── exports.query │ │ │ ├── exports.rs │ │ │ ├── imports.query │ │ │ ├── imports.rs │ │ │ ├── mod.rs │ │ │ ├── module_declaration.query │ │ │ ├── module_declaration.rs │ │ │ ├── qualified_values.query │ │ │ ├── qualified_values.rs │ │ │ ├── scopes.query │ │ │ ├── scopes.rs │ │ │ ├── unqualified_values.query │ │ │ └── unqualified_values.rs │ │ └── refactors │ │ │ ├── added_constructors_to_exposing_list.rs │ │ │ ├── added_exposing_list_to_import.rs │ │ │ ├── added_module_qualifier_to_name.rs │ │ │ ├── changed_as_clause.rs │ │ │ ├── changed_module_qualifier.rs │ │ │ ├── changed_name.rs │ │ │ ├── changed_values_in_exposing_list.rs │ │ │ ├── lib │ │ │ ├── add_qualifier_to_references.rs │ │ │ ├── constructors_of_exports.rs │ │ │ ├── mod.rs │ │ │ ├── qualify_value.rs │ │ │ ├── remove_qualifier_from_references.rs │ │ │ ├── renaming.rs │ │ │ └── simulations.rs │ │ │ ├── mod.rs │ │ │ ├── removed_constructors_from_exposing_list.rs │ │ │ ├── removed_exposing_list_from_import.rs │ │ │ ├── removed_module_qualifier_from_name.rs │ │ │ └── typed_unimported_qualified_value.rs │ ├── lib │ │ ├── bytes.rs │ │ ├── dataflow.rs │ │ ├── dir_walker.rs │ │ ├── included_answer_test.rs │ │ ├── intersperse.rs │ │ ├── log.rs │ │ ├── mod.rs │ │ ├── simulation.rs │ │ ├── source_code.rs │ │ └── tempdir.rs │ └── main.rs ├── tests │ ├── elm-stuff │ │ └── 0.19.1 │ │ │ └── i.dat │ ├── elm.json │ ├── exports-scanning │ │ ├── exposing_all.elm │ │ ├── exposing_minimal.elm │ │ └── hiding_constructors.elm │ ├── refactor-simulations │ │ ├── add_and_remove_items_in_exposing_list.elm │ │ ├── add_as_clause_to_import.elm │ │ ├── add_constructors_for_type_to_exposing_list.elm │ │ ├── add_exposing_all_list.elm │ │ ├── add_exposing_list.elm │ │ ├── add_module_alias_as_qualifier_to_variable.elm │ │ ├── add_module_qualifier_to_constructor.elm │ │ ├── add_module_qualifier_to_constructor_from_expose_all_import.elm │ │ ├── add_module_qualifier_to_record_type_alias_in_type_declaration.elm │ │ ├── add_module_qualifier_to_record_type_alias_used_as_constructor.elm │ │ ├── add_module_qualifier_to_type.elm │ │ ├── add_module_qualifier_to_type_with_same_name.elm │ │ ├── add_module_qualifier_to_value_from_exposing_all_import.elm │ │ ├── add_module_qualifier_to_variable.elm │ │ ├── add_non_record_type_alias_with_same_name_as_local_constructor_to_exposing_list_of_import.elm │ │ ├── add_record_type_alias_to_exposing_list_of_import.elm │ │ ├── add_record_type_alias_with_same_name_as_local_constructor_to_exposing_list_of_import.elm │ │ ├── add_type_exposing_constructors_to_exposing_list.elm │ │ ├── add_type_to_exposing_list.elm │ │ ├── add_value_to_exposing_list.elm │ │ ├── add_value_to_exposing_list_of_import_with_same_name_as_local_variable_and_another_with_the_same_name_plus_trailing_2.elm │ │ ├── add_value_to_exposing_list_with_same_name_as_local_variable.elm │ │ ├── add_value_to_exposing_list_with_same_name_as_top_level_function.elm │ │ ├── change_as_clause_of_import.elm │ │ ├── change_constructor_name.elm │ │ ├── change_constructor_name_unexposed_to_other_modules │ │ │ ├── ModuleImportingUnexposedConstructor.elm │ │ │ ├── ModuleNotExposingConstructor.elm │ │ │ └── SIMULATION │ │ ├── change_constructor_name_used_in_other_module │ │ │ ├── ModuleExposingConstructor.elm │ │ │ ├── ModuleImportingConstructorExposingAll.elm │ │ │ ├── ModuleImportingConstructorExposingConstructor.elm │ │ │ ├── ModuleUsingConstructorQualified.elm │ │ │ ├── ModuleUsingDifferentConstructorWithSameName.elm │ │ │ └── SIMULATION │ │ ├── change_function_argument_name.elm │ │ ├── change_function_argument_name_to_name_used_as_other_function_argument.elm │ │ ├── change_lambda_argument_name.elm │ │ ├── change_module_qualifier_of_constructor.elm │ │ ├── change_module_qualifier_of_type.elm │ │ ├── change_module_qualifier_of_value.elm │ │ ├── change_module_qualifier_of_variable_from_unaliased_import_name.elm │ │ ├── change_module_qualifier_to_invalid_name.elm │ │ ├── change_module_qualifier_to_match_unaliased_import_name.elm │ │ ├── change_name_of_function_in_type_definition_in_let_binding.elm │ │ ├── change_name_of_top_level_function.elm │ │ ├── change_name_of_top_level_function_in_type_definition.elm │ │ ├── change_record_type_alias_name.elm │ │ ├── change_record_type_alias_name_unexposed_to_other_modules │ │ │ ├── ModuleImportingExposingAllRecordTypeAliases.elm │ │ │ ├── ModuleNotExposingRecordTypeAlias.elm │ │ │ └── SIMULATION │ │ ├── change_record_type_alias_name_used_in_other_module │ │ │ ├── ModuleExposingRecordTypeAlias.elm │ │ │ ├── ModuleImportRecordTypeAliasExposingAll.elm │ │ │ ├── ModuleImportingRecordTypeAliasExposingRecordTypeAlias.elm │ │ │ ├── ModuleUsingDifferentRecordTypeAliasWithSameName.elm │ │ │ ├── ModuleUsingRecordTypeAliasQualified.elm │ │ │ └── SIMULATION │ │ ├── change_type_alias_name.elm │ │ ├── change_type_name.elm │ │ ├── change_type_name_unexposed_to_other_modules │ │ │ ├── ModuleImportingExposingAll.elm │ │ │ ├── ModuleNotExposingType.elm │ │ │ └── SIMULATION │ │ ├── change_type_name_used_in_other_module │ │ │ ├── ModuleExposingType.elm │ │ │ ├── ModuleImportingTypeExposingAll.elm │ │ │ ├── ModuleImportingTypeExposingType.elm │ │ │ ├── ModuleUsingDifferentTypeWithSameName.elm │ │ │ ├── ModuleUsingTypeQualified.elm │ │ │ └── SIMULATION │ │ ├── change_variable_name_in_case_pattern.elm │ │ ├── change_variable_name_in_let_binding.elm │ │ ├── change_variable_name_in_let_binding_pattern.elm │ │ ├── change_variable_name_in_let_binding_to_name_already_in_use.elm │ │ ├── change_variable_name_of_record_field_pattern.elm │ │ ├── change_variable_name_to_already_existing_name_in_scope.elm │ │ ├── change_variable_name_unexposed_to_other_modules │ │ │ ├── ModuleImportingExposingAllVariables.elm │ │ │ ├── ModuleNotExposingVariable.elm │ │ │ └── SIMULATION │ │ ├── change_variable_name_used_in_other_module │ │ │ ├── ModuleExposingVariable.elm │ │ │ ├── ModuleImportingVariableExposingAll.elm │ │ │ ├── ModuleImportingVariableExposingVariable.elm │ │ │ ├── ModuleUsingDifferentVariableWithSameName.elm │ │ │ ├── ModuleUsingVariableQualified.elm │ │ │ └── SIMULATION │ │ ├── expose_value_with_same_name_as_exposed_value_from_other_module.elm │ │ ├── expose_value_with_same_name_as_value_from_other_module_exposing_all.elm │ │ ├── remove_as_clause_from_import.elm │ │ ├── remove_constructor_from_exposing_list_of_import.elm │ │ ├── remove_exposing_all_clause_containing_operator_from_import.elm │ │ ├── remove_exposing_all_clause_from_import.elm │ │ ├── remove_exposing_all_clause_from_local_import.elm │ │ ├── remove_exposing_clause_containing_operator_from_import.elm │ │ ├── remove_exposing_clause_from_import.elm │ │ ├── remove_exposing_clause_from_import_with_as_clause.elm │ │ ├── remove_module_qualifier_for_module_exposing_all.elm │ │ ├── remove_module_qualifier_for_module_without_exposing_list.elm │ │ ├── remove_module_qualifier_from_constructor.elm │ │ ├── remove_module_qualifier_from_constructor_of_exposed_type.elm │ │ ├── remove_module_qualifier_from_constructor_with_same_name_as_local_constructor.elm │ │ ├── remove_module_qualifier_from_exposed_constructor.elm │ │ ├── remove_module_qualifier_from_record_type_alias_used_as_function.elm │ │ ├── remove_module_qualifier_from_type.elm │ │ ├── remove_module_qualifier_from_type_with_same_name_as_local_type.elm │ │ ├── remove_module_qualifier_from_type_with_same_name_as_local_type_alias.elm │ │ ├── remove_module_qualifier_from_type_with_same_name_as_other_exposed_type │ │ │ ├── BookOne.elm │ │ │ ├── BookTwo.elm │ │ │ ├── ModuleImportingTwoTypesWithSameNameExposingOne.elm │ │ │ └── SIMULATION │ │ ├── remove_module_qualifier_from_type_with_same_name_as_other_imported_type │ │ │ ├── ModuleImportingTwoTypesWithSameName.elm │ │ │ ├── PageOne.elm │ │ │ ├── PageTwo.elm │ │ │ └── SIMULATION │ │ ├── remove_module_qualifier_from_variable.elm │ │ ├── remove_module_qualifier_from_variable_with_same_name_as_local_variable.elm │ │ ├── remove_module_qualifier_from_variable_with_same_name_as_value_exposed_from_other_module.elm │ │ ├── remove_module_qualifier_inserting_variable_at_end_of_exposing_list.elm │ │ ├── remove_multiple_values_from_exposing_list_of_import.elm │ │ ├── remove_operator_from_exposing_list_of_import.elm │ │ ├── remove_record_type_alias_from_exposing_list_of_import.elm │ │ ├── remove_type_with_constructor_from_exposing_list_of_import.elm │ │ ├── remove_value_from_exposing_list_of_import_with_as_clause.elm │ │ ├── remove_variable_from_exposing_list_of_import.elm │ │ ├── replace_double_dot_with_exposing_list.elm │ │ ├── replace_exposing_list_with_double_dot.elm │ │ ├── use_different_constructor.elm │ │ ├── use_qualifier_of_implicitly_imported_module_in_new_code.elm │ │ ├── use_qualifier_of_non_existing_module_in_new_code.elm │ │ ├── use_qualifier_of_unimported_module_in_new_code.elm │ │ └── use_qualifier_of_unimported_module_while_in_the_middle_of_writing_identifier.elm │ ├── src │ │ └── Support │ │ │ ├── Date.elm │ │ │ └── Foo.elm │ └── type-checking │ │ ├── case_statement.elm │ │ ├── if_statement.elm │ │ ├── let_in_statement.elm │ │ ├── nested_function_calls.elm │ │ └── same_name_in_different_scopes.elm └── watch.sh ├── flake.lock ├── flake.nix ├── netlify.toml ├── publish-vscode-extension.sh └── release-check.sh /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | result 3 | elm-stuff 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/README.md -------------------------------------------------------------------------------- /check-credits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/check-credits.sh -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- 1 | too-many-arguments-threshold = 1000 2 | -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/default.nix -------------------------------------------------------------------------------- /docs/elm-pair-commercial-license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/docs/elm-pair-commercial-license.pdf -------------------------------------------------------------------------------- /editor-integrations/neovim/elm-pair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/editor-integrations/neovim/elm-pair -------------------------------------------------------------------------------- /editor-integrations/neovim/ftplugin/elm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/editor-integrations/neovim/ftplugin/elm.vim -------------------------------------------------------------------------------- /editor-integrations/neovim/lua/elm-pair.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/editor-integrations/neovim/lua/elm-pair.lua -------------------------------------------------------------------------------- /editor-integrations/vscode/.vscodeignore: -------------------------------------------------------------------------------- 1 | tests.js 2 | -------------------------------------------------------------------------------- /editor-integrations/vscode/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/editor-integrations/vscode/extension.js -------------------------------------------------------------------------------- /editor-integrations/vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/editor-integrations/vscode/package.json -------------------------------------------------------------------------------- /editor-integrations/vscode/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/editor-integrations/vscode/tests.js -------------------------------------------------------------------------------- /elm-pair.com/.gitignore: -------------------------------------------------------------------------------- 1 | public 2 | content/news/from-changelog-*.md 3 | -------------------------------------------------------------------------------- /elm-pair.com/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/build.sh -------------------------------------------------------------------------------- /elm-pair.com/changelog-to-news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/changelog-to-news.py -------------------------------------------------------------------------------- /elm-pair.com/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/config.toml -------------------------------------------------------------------------------- /elm-pair.com/content/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/home.md -------------------------------------------------------------------------------- /elm-pair.com/content/install/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/install/index.md -------------------------------------------------------------------------------- /elm-pair.com/content/install/neovim-nix-home-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/install/neovim-nix-home-manager.md -------------------------------------------------------------------------------- /elm-pair.com/content/install/neovim-packer-nvim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/install/neovim-packer-nvim.md -------------------------------------------------------------------------------- /elm-pair.com/content/install/neovim-vim-plug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/install/neovim-vim-plug.md -------------------------------------------------------------------------------- /elm-pair.com/content/install/vscode-marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/install/vscode-marketplace.md -------------------------------------------------------------------------------- /elm-pair.com/content/install/vscode-nix-home-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/install/vscode-nix-home-manager.md -------------------------------------------------------------------------------- /elm-pair.com/content/news/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/news/_index.md -------------------------------------------------------------------------------- /elm-pair.com/content/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/privacy.md -------------------------------------------------------------------------------- /elm-pair.com/content/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/content/support.md -------------------------------------------------------------------------------- /elm-pair.com/static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/static/icon.png -------------------------------------------------------------------------------- /elm-pair.com/static/imports.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/static/imports.gif -------------------------------------------------------------------------------- /elm-pair.com/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/static/logo.png -------------------------------------------------------------------------------- /elm-pair.com/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/static/logo.svg -------------------------------------------------------------------------------- /elm-pair.com/static/renaming.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/static/renaming.gif -------------------------------------------------------------------------------- /elm-pair.com/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/static/style.css -------------------------------------------------------------------------------- /elm-pair.com/static/vscode-install-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/static/vscode-install-screenshot.png -------------------------------------------------------------------------------- /elm-pair.com/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/templates/base.html -------------------------------------------------------------------------------- /elm-pair.com/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/templates/index.html -------------------------------------------------------------------------------- /elm-pair.com/templates/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/templates/news.html -------------------------------------------------------------------------------- /elm-pair.com/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/templates/page.html -------------------------------------------------------------------------------- /elm-pair.com/templates/shortcodes/purchase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair.com/templates/shortcodes/purchase.html -------------------------------------------------------------------------------- /elm-pair/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/Cargo.lock -------------------------------------------------------------------------------- /elm-pair/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/Cargo.toml -------------------------------------------------------------------------------- /elm-pair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/README.md -------------------------------------------------------------------------------- /elm-pair/project/elm.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elm-pair/rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 80 2 | -------------------------------------------------------------------------------- /elm-pair/src/analysis_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/analysis_thread.rs -------------------------------------------------------------------------------- /elm-pair/src/compilation_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/compilation_thread.rs -------------------------------------------------------------------------------- /elm-pair/src/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/credits.txt -------------------------------------------------------------------------------- /elm-pair/src/editor_listener_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/editor_listener_thread.rs -------------------------------------------------------------------------------- /elm-pair/src/editors/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/editors/mod.rs -------------------------------------------------------------------------------- /elm-pair/src/editors/neovim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/editors/neovim.rs -------------------------------------------------------------------------------- /elm-pair/src/editors/vscode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/editors/vscode.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/compiler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/compiler.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/dependencies.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/io/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/io/mod.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/io/parse_elm_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/io/parse_elm_json.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/io/parse_elm_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/io/parse_elm_module.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/io/parse_elm_stuff_idat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/io/parse_elm_stuff_idat.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/mod.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/module_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/module_name.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/project.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/exports.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/exports.query -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/exports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/exports.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/imports.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/imports.query -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/imports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/imports.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/mod.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/module_declaration.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/module_declaration.query -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/module_declaration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/module_declaration.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/qualified_values.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/qualified_values.query -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/qualified_values.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/qualified_values.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/scopes.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/scopes.query -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/scopes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/scopes.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/unqualified_values.query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/unqualified_values.query -------------------------------------------------------------------------------- /elm-pair/src/elm/queries/unqualified_values.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/queries/unqualified_values.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/added_constructors_to_exposing_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/added_constructors_to_exposing_list.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/added_exposing_list_to_import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/added_exposing_list_to_import.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/added_module_qualifier_to_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/added_module_qualifier_to_name.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/changed_as_clause.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/changed_as_clause.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/changed_module_qualifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/changed_module_qualifier.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/changed_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/changed_name.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/changed_values_in_exposing_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/changed_values_in_exposing_list.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/lib/add_qualifier_to_references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/lib/add_qualifier_to_references.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/lib/constructors_of_exports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/lib/constructors_of_exports.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/lib/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/lib/mod.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/lib/qualify_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/lib/qualify_value.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/lib/remove_qualifier_from_references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/lib/remove_qualifier_from_references.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/lib/renaming.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/lib/renaming.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/lib/simulations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/lib/simulations.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/mod.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/removed_constructors_from_exposing_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/removed_constructors_from_exposing_list.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/removed_exposing_list_from_import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/removed_exposing_list_from_import.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/removed_module_qualifier_from_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/removed_module_qualifier_from_name.rs -------------------------------------------------------------------------------- /elm-pair/src/elm/refactors/typed_unimported_qualified_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/elm/refactors/typed_unimported_qualified_value.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/bytes.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/dataflow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/dataflow.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/dir_walker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/dir_walker.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/included_answer_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/included_answer_test.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/intersperse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/intersperse.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/log.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/mod.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/simulation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/simulation.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/source_code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/source_code.rs -------------------------------------------------------------------------------- /elm-pair/src/lib/tempdir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/lib/tempdir.rs -------------------------------------------------------------------------------- /elm-pair/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/src/main.rs -------------------------------------------------------------------------------- /elm-pair/tests/elm-stuff/0.19.1/i.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/elm-stuff/0.19.1/i.dat -------------------------------------------------------------------------------- /elm-pair/tests/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/elm.json -------------------------------------------------------------------------------- /elm-pair/tests/exports-scanning/exposing_all.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/exports-scanning/exposing_all.elm -------------------------------------------------------------------------------- /elm-pair/tests/exports-scanning/exposing_minimal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/exports-scanning/exposing_minimal.elm -------------------------------------------------------------------------------- /elm-pair/tests/exports-scanning/hiding_constructors.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/exports-scanning/hiding_constructors.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_and_remove_items_in_exposing_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_and_remove_items_in_exposing_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_as_clause_to_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_as_clause_to_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_constructors_for_type_to_exposing_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_constructors_for_type_to_exposing_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_exposing_all_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_exposing_all_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_exposing_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_exposing_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_module_alias_as_qualifier_to_variable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_module_alias_as_qualifier_to_variable.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_module_qualifier_to_constructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_module_qualifier_to_constructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_module_qualifier_to_constructor_from_expose_all_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_module_qualifier_to_constructor_from_expose_all_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_module_qualifier_to_record_type_alias_in_type_declaration.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_module_qualifier_to_record_type_alias_in_type_declaration.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_module_qualifier_to_record_type_alias_used_as_constructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_module_qualifier_to_record_type_alias_used_as_constructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_module_qualifier_to_type.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_module_qualifier_to_type.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_module_qualifier_to_type_with_same_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_module_qualifier_to_type_with_same_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_module_qualifier_to_value_from_exposing_all_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_module_qualifier_to_value_from_exposing_all_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_module_qualifier_to_variable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_module_qualifier_to_variable.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_non_record_type_alias_with_same_name_as_local_constructor_to_exposing_list_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_non_record_type_alias_with_same_name_as_local_constructor_to_exposing_list_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_record_type_alias_to_exposing_list_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_record_type_alias_to_exposing_list_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_record_type_alias_with_same_name_as_local_constructor_to_exposing_list_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_record_type_alias_with_same_name_as_local_constructor_to_exposing_list_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_type_exposing_constructors_to_exposing_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_type_exposing_constructors_to_exposing_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_type_to_exposing_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_type_to_exposing_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_value_to_exposing_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_value_to_exposing_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_value_to_exposing_list_of_import_with_same_name_as_local_variable_and_another_with_the_same_name_plus_trailing_2.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_value_to_exposing_list_of_import_with_same_name_as_local_variable_and_another_with_the_same_name_plus_trailing_2.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_value_to_exposing_list_with_same_name_as_local_variable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_value_to_exposing_list_with_same_name_as_local_variable.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/add_value_to_exposing_list_with_same_name_as_top_level_function.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/add_value_to_exposing_list_with_same_name_as_top_level_function.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_as_clause_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_as_clause_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name_unexposed_to_other_modules/ModuleImportingUnexposedConstructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name_unexposed_to_other_modules/ModuleImportingUnexposedConstructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name_unexposed_to_other_modules/ModuleNotExposingConstructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name_unexposed_to_other_modules/ModuleNotExposingConstructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name_unexposed_to_other_modules/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name_unexposed_to_other_modules/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleExposingConstructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleExposingConstructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleImportingConstructorExposingAll.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleImportingConstructorExposingAll.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleImportingConstructorExposingConstructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleImportingConstructorExposingConstructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleUsingConstructorQualified.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleUsingConstructorQualified.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleUsingDifferentConstructorWithSameName.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/ModuleUsingDifferentConstructorWithSameName.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_constructor_name_used_in_other_module/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_function_argument_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_function_argument_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_function_argument_name_to_name_used_as_other_function_argument.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_function_argument_name_to_name_used_as_other_function_argument.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_lambda_argument_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_lambda_argument_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_module_qualifier_of_constructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_module_qualifier_of_constructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_module_qualifier_of_type.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_module_qualifier_of_type.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_module_qualifier_of_value.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_module_qualifier_of_value.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_module_qualifier_of_variable_from_unaliased_import_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_module_qualifier_of_variable_from_unaliased_import_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_module_qualifier_to_invalid_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_module_qualifier_to_invalid_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_module_qualifier_to_match_unaliased_import_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_module_qualifier_to_match_unaliased_import_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_name_of_function_in_type_definition_in_let_binding.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_name_of_function_in_type_definition_in_let_binding.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_name_of_top_level_function.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_name_of_top_level_function.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_name_of_top_level_function_in_type_definition.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_name_of_top_level_function_in_type_definition.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name_unexposed_to_other_modules/ModuleImportingExposingAllRecordTypeAliases.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name_unexposed_to_other_modules/ModuleImportingExposingAllRecordTypeAliases.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name_unexposed_to_other_modules/ModuleNotExposingRecordTypeAlias.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name_unexposed_to_other_modules/ModuleNotExposingRecordTypeAlias.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name_unexposed_to_other_modules/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name_unexposed_to_other_modules/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleExposingRecordTypeAlias.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleExposingRecordTypeAlias.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleImportRecordTypeAliasExposingAll.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleImportRecordTypeAliasExposingAll.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleImportingRecordTypeAliasExposingRecordTypeAlias.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleImportingRecordTypeAliasExposingRecordTypeAlias.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleUsingDifferentRecordTypeAliasWithSameName.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleUsingDifferentRecordTypeAliasWithSameName.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleUsingRecordTypeAliasQualified.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/ModuleUsingRecordTypeAliasQualified.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_record_type_alias_name_used_in_other_module/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_alias_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_alias_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name_unexposed_to_other_modules/ModuleImportingExposingAll.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name_unexposed_to_other_modules/ModuleImportingExposingAll.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name_unexposed_to_other_modules/ModuleNotExposingType.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name_unexposed_to_other_modules/ModuleNotExposingType.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name_unexposed_to_other_modules/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name_unexposed_to_other_modules/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleExposingType.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleExposingType.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleImportingTypeExposingAll.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleImportingTypeExposingAll.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleImportingTypeExposingType.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleImportingTypeExposingType.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleUsingDifferentTypeWithSameName.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleUsingDifferentTypeWithSameName.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleUsingTypeQualified.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/ModuleUsingTypeQualified.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_type_name_used_in_other_module/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_in_case_pattern.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_in_case_pattern.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_in_let_binding.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_in_let_binding.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_in_let_binding_pattern.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_in_let_binding_pattern.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_in_let_binding_to_name_already_in_use.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_in_let_binding_to_name_already_in_use.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_of_record_field_pattern.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_of_record_field_pattern.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_to_already_existing_name_in_scope.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_to_already_existing_name_in_scope.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_unexposed_to_other_modules/ModuleImportingExposingAllVariables.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_unexposed_to_other_modules/ModuleImportingExposingAllVariables.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_unexposed_to_other_modules/ModuleNotExposingVariable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_unexposed_to_other_modules/ModuleNotExposingVariable.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_unexposed_to_other_modules/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_unexposed_to_other_modules/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleExposingVariable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleExposingVariable.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleImportingVariableExposingAll.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleImportingVariableExposingAll.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleImportingVariableExposingVariable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleImportingVariableExposingVariable.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleUsingDifferentVariableWithSameName.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleUsingDifferentVariableWithSameName.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleUsingVariableQualified.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/ModuleUsingVariableQualified.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/change_variable_name_used_in_other_module/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/expose_value_with_same_name_as_exposed_value_from_other_module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/expose_value_with_same_name_as_exposed_value_from_other_module.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/expose_value_with_same_name_as_value_from_other_module_exposing_all.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/expose_value_with_same_name_as_value_from_other_module_exposing_all.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_as_clause_from_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_as_clause_from_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_constructor_from_exposing_list_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_constructor_from_exposing_list_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_exposing_all_clause_containing_operator_from_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_exposing_all_clause_containing_operator_from_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_exposing_all_clause_from_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_exposing_all_clause_from_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_exposing_all_clause_from_local_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_exposing_all_clause_from_local_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_exposing_clause_containing_operator_from_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_exposing_clause_containing_operator_from_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_exposing_clause_from_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_exposing_clause_from_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_exposing_clause_from_import_with_as_clause.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_exposing_clause_from_import_with_as_clause.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_for_module_exposing_all.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_for_module_exposing_all.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_for_module_without_exposing_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_for_module_without_exposing_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_constructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_constructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_constructor_of_exposed_type.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_constructor_of_exposed_type.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_constructor_with_same_name_as_local_constructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_constructor_with_same_name_as_local_constructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_exposed_constructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_exposed_constructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_record_type_alias_used_as_function.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_record_type_alias_used_as_function.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_local_type.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_local_type.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_local_type_alias.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_local_type_alias.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_exposed_type/BookOne.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_exposed_type/BookOne.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_exposed_type/BookTwo.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_exposed_type/BookTwo.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_exposed_type/ModuleImportingTwoTypesWithSameNameExposingOne.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_exposed_type/ModuleImportingTwoTypesWithSameNameExposingOne.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_exposed_type/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_exposed_type/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_imported_type/ModuleImportingTwoTypesWithSameName.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_imported_type/ModuleImportingTwoTypesWithSameName.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_imported_type/PageOne.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_imported_type/PageOne.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_imported_type/PageTwo.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_imported_type/PageTwo.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_imported_type/SIMULATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_type_with_same_name_as_other_imported_type/SIMULATION -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_variable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_variable.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_variable_with_same_name_as_local_variable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_variable_with_same_name_as_local_variable.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_from_variable_with_same_name_as_value_exposed_from_other_module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_from_variable_with_same_name_as_value_exposed_from_other_module.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_module_qualifier_inserting_variable_at_end_of_exposing_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_module_qualifier_inserting_variable_at_end_of_exposing_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_multiple_values_from_exposing_list_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_multiple_values_from_exposing_list_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_operator_from_exposing_list_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_operator_from_exposing_list_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_record_type_alias_from_exposing_list_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_record_type_alias_from_exposing_list_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_type_with_constructor_from_exposing_list_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_type_with_constructor_from_exposing_list_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_value_from_exposing_list_of_import_with_as_clause.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_value_from_exposing_list_of_import_with_as_clause.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/remove_variable_from_exposing_list_of_import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/remove_variable_from_exposing_list_of_import.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/replace_double_dot_with_exposing_list.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/replace_double_dot_with_exposing_list.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/replace_exposing_list_with_double_dot.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/replace_exposing_list_with_double_dot.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/use_different_constructor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/use_different_constructor.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/use_qualifier_of_implicitly_imported_module_in_new_code.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/use_qualifier_of_implicitly_imported_module_in_new_code.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/use_qualifier_of_non_existing_module_in_new_code.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/use_qualifier_of_non_existing_module_in_new_code.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/use_qualifier_of_unimported_module_in_new_code.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/use_qualifier_of_unimported_module_in_new_code.elm -------------------------------------------------------------------------------- /elm-pair/tests/refactor-simulations/use_qualifier_of_unimported_module_while_in_the_middle_of_writing_identifier.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/refactor-simulations/use_qualifier_of_unimported_module_while_in_the_middle_of_writing_identifier.elm -------------------------------------------------------------------------------- /elm-pair/tests/src/Support/Date.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/src/Support/Date.elm -------------------------------------------------------------------------------- /elm-pair/tests/src/Support/Foo.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/src/Support/Foo.elm -------------------------------------------------------------------------------- /elm-pair/tests/type-checking/case_statement.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/type-checking/case_statement.elm -------------------------------------------------------------------------------- /elm-pair/tests/type-checking/if_statement.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/type-checking/if_statement.elm -------------------------------------------------------------------------------- /elm-pair/tests/type-checking/let_in_statement.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/type-checking/let_in_statement.elm -------------------------------------------------------------------------------- /elm-pair/tests/type-checking/nested_function_calls.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/type-checking/nested_function_calls.elm -------------------------------------------------------------------------------- /elm-pair/tests/type-checking/same_name_in_different_scopes.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/tests/type-checking/same_name_in_different_scopes.elm -------------------------------------------------------------------------------- /elm-pair/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/elm-pair/watch.sh -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/flake.nix -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/netlify.toml -------------------------------------------------------------------------------- /publish-vscode-extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/publish-vscode-extension.sh -------------------------------------------------------------------------------- /release-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoudenberg/elm-pair/HEAD/release-check.sh --------------------------------------------------------------------------------