├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ ├── pr_info_intro.yml │ ├── pr_info_post.yml │ ├── pr_info_untrusted.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── License.txt ├── README.md ├── bash-completion └── completions │ ├── dcd-client │ └── dcd-server ├── ci ├── request_time_stats.d ├── summary_comment.sh └── summary_comment_diff.sh ├── common ├── dub.sdl ├── dubhash.d └── src │ └── dcd │ └── common │ ├── constants.d │ ├── constants2.d │ ├── dcd_version.d │ ├── messages.d │ └── socket.d ├── constants-gen ├── generator.d ├── pragma.dd ├── traits.dd └── update-constants.sh ├── dsymbol ├── .editorconfig ├── .gitignore ├── LICENSE_1_0.txt ├── README.md ├── dub.json ├── meson.build ├── src │ └── dsymbol │ │ ├── builtin │ │ ├── names.d │ │ └── symbols.d │ │ ├── cache_entry.d │ │ ├── conversion │ │ ├── first.d │ │ ├── package.d │ │ ├── second.d │ │ └── third.d │ │ ├── deferred.d │ │ ├── import_.d │ │ ├── modulecache.d │ │ ├── scope_.d │ │ ├── semantic.d │ │ ├── string_interning.d │ │ ├── symbol.d │ │ ├── tests.d │ │ ├── type_lookup.d │ │ ├── ufcs.d │ │ └── utils.d └── subprojects │ ├── dcontainers.wrap │ └── dparse.wrap ├── dub.json ├── dub.selections.json ├── installer └── win │ ├── EnvVarUpdate.nsh │ └── installer.nsi ├── makefile ├── man1 ├── dcd-client.1 └── dcd-server.1 ├── sonar-project.properties ├── src ├── dcd │ ├── client │ │ └── client.d │ └── server │ │ ├── autocomplete │ │ ├── complete.d │ │ ├── doc.d │ │ ├── inlayhints.d │ │ ├── localuse.d │ │ ├── package.d │ │ ├── symbols.d │ │ └── util.d │ │ ├── main.d │ │ └── server.d └── dscanner-report.json ├── teaser.png └── tests ├── extra └── tc_ufcs_all_kinds │ ├── .gitignore │ ├── generate_tests.d │ └── run.sh ├── imports ├── a.d ├── b.d ├── circular │ ├── a.d │ ├── b.d │ ├── x.d │ ├── y.d │ └── z.d ├── object.d ├── package1 │ └── module1.d ├── point.d ├── scope_mess.d ├── std │ ├── algorithm.d │ ├── array.d │ ├── ascii.d │ ├── base64.d │ ├── bigint.d │ ├── bitmanip.d │ ├── c │ │ └── preserve_this_directory.txt │ ├── compiler.d │ ├── complex.d │ ├── concurrency.d │ ├── container.d │ ├── conv.d │ ├── cstream.d │ ├── csv.d │ ├── d │ │ └── preserve_this_directory.txt │ ├── datetime.d │ ├── demangle.d │ ├── digest │ │ └── preserve_this_directory.txt │ ├── encoding.d │ ├── exception.d │ ├── experimental │ │ └── preserve_this_directory.txt │ ├── file.d │ ├── format.d │ ├── functional.d │ ├── getopt.d │ ├── internal │ │ └── preserve_this_directory.txt │ ├── json.d │ ├── lexer.d │ ├── math.d │ ├── mathspecial.d │ ├── metastrings.d │ ├── mmfile.d │ ├── net │ │ └── preserve_this_directory.txt │ ├── numeric.d │ ├── outbuffer.d │ ├── parallelism.d │ ├── path.d │ ├── process.d │ ├── random.d │ ├── range.d │ ├── regex.d │ ├── signals.d │ ├── socket.d │ ├── socketstream.d │ ├── stdint.d │ ├── stdio.d │ ├── stdiobase.d │ ├── stream.d │ ├── string.d │ ├── syserror.d │ ├── system.d │ ├── traits.d │ ├── typecons.d │ ├── typelist.d │ ├── typetuple.d │ ├── uni.d │ ├── uri.d │ ├── utf.d │ ├── uuid.d │ ├── variant.d │ ├── windows │ │ └── preserve_this_directory.txt │ ├── xml.d │ ├── zip.d │ └── zlib.d ├── tc620_import.d ├── testfile1.d └── testfile2.d ├── run_tests.sh ├── tc001 ├── expected.txt ├── file.d └── run.sh ├── tc002 ├── expected.txt ├── file.d └── run.sh ├── tc003 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc004 ├── expected.txt ├── file.d └── run.sh ├── tc005 ├── expected.txt ├── file.d └── run.sh ├── tc006 ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── expected4.txt ├── file.d └── run.sh ├── tc007 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc008 ├── expected1.txt ├── file.d └── run.sh ├── tc009 ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── file.d └── run.sh ├── tc010 ├── expected1.txt ├── expected2.txt ├── file.d ├── run.sh ├── testfile1_new.d └── testfile1_old.d ├── tc011 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc012 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc013 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc014 ├── expected1.txt ├── expected2.txt ├── file.d ├── run.sh ├── testfile2_new.d └── testfile2_old.d ├── tc015 ├── expected1.txt ├── expected2.txt ├── file1.d ├── file2.d └── run.sh ├── tc016 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc017 ├── expected.txt ├── file.d └── run.sh ├── tc018 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc019 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc020 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc021 ├── expected.txt ├── file.d └── run.sh ├── tc022 ├── expected.txt ├── file.d └── run.sh ├── tc023 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc024 ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── expected4.txt ├── expected5.txt ├── expected6.txt ├── expected7.txt ├── expected8.txt ├── file.d └── run.sh ├── tc025 ├── expected1.txt ├── file.d └── run.sh ├── tc026 ├── expected1.txt ├── file.d └── run.sh ├── tc027 ├── expected1.txt ├── file.d └── run.sh ├── tc028 ├── expected1.txt ├── file.d └── run.sh ├── tc029 ├── expected1.txt ├── file.d └── run.sh ├── tc030 ├── expected1.txt ├── file.d └── run.sh ├── tc031 ├── expected1.txt ├── file.d └── run.sh ├── tc032 ├── expected1.txt ├── file.d └── run.sh ├── tc033 ├── expected1.txt ├── file.d └── run.sh ├── tc034 ├── expected1.txt ├── file.d └── run.sh ├── tc035 ├── expected1.txt ├── file.d └── run.sh ├── tc036 ├── bar.d ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── file.d └── run.sh ├── tc037 ├── file.d └── run.sh ├── tc038 ├── excplicit_array.d ├── expected1.txt ├── implicit_array.d ├── implicit_var.d └── run.sh ├── tc039 ├── expected.txt ├── file.d └── run.sh ├── tc040 ├── file.d └── run.sh ├── tc041 ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── expected4.txt ├── file.d └── run.sh ├── tc042 ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc043 ├── expected1.txt ├── file.d └── run.sh ├── tc044 ├── expected.txt ├── file.d └── run.sh ├── tc045 ├── expected.txt ├── file.d └── run.sh ├── tc046 ├── expected.txt ├── file.d └── run.sh ├── tc047 ├── expected.txt ├── file.d └── run.sh ├── tc048 ├── expected.txt ├── file.d └── run.sh ├── tc049 ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── file.d └── run.sh ├── tc050 ├── expected.txt ├── file.d └── run.sh ├── tc051 ├── expected.txt ├── expected1.txt ├── expected2.txt ├── file.d ├── file1.d ├── file2.d └── run.sh ├── tc052 ├── file.d └── run.sh ├── tc053 ├── expected.txt ├── file.d └── run.sh ├── tc054 ├── expected.txt ├── file.d └── run.sh ├── tc055 ├── expected.txt ├── file.d └── run.sh ├── tc056 ├── expected.txt ├── file.d └── run.sh ├── tc057 ├── expected.txt ├── file.d └── run.sh ├── tc058 ├── expected1.txt ├── file.d └── run.sh ├── tc059 ├── expected1.txt ├── file.d └── run.sh ├── tc060 ├── file.d └── run.sh ├── tc061 ├── expected1.txt ├── file.d └── run.sh ├── tc062 ├── .gitignore ├── file.d └── run.sh ├── tc620 ├── expected.txt ├── file.d └── run.sh ├── tc717 ├── expected.txt ├── file.d └── run.sh ├── tc_access_modifiers ├── bar.d ├── expected0.txt ├── expected1.txt ├── expected1_1.txt ├── expected2.txt ├── expected3.txt ├── file1.d ├── file2.d └── run.sh ├── tc_accesschain_type ├── expected.txt ├── file.d └── run.sh ├── tc_anon_class ├── expected1.txt ├── expected2.txt ├── file1.d ├── file2.d └── run.sh ├── tc_anon_struct ├── expected.txt ├── file.d └── run.sh ├── tc_bang_op_or_template ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc_base_template_type ├── expected.txt ├── file.d └── run.sh ├── tc_body_var ├── expected.txt ├── file.d └── run.sh ├── tc_calltip_in_func ├── expected.txt ├── file.d └── run.sh ├── tc_casts ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc_char_dot ├── expected.txt ├── file.d └── run.sh ├── tc_complete_kw ├── expected1.txt ├── expected3.txt ├── file1.d ├── file2.d ├── file3.d └── run.sh ├── tc_ctors ├── expected.txt ├── file.d └── run.sh ├── tc_currmod_fqn ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── file1.d ├── file2.d ├── file3.d └── run.sh ├── tc_ditto_scopes ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── expected4.txt ├── expected5.txt ├── expected6.txt ├── expected7.txt ├── expected8.1.txt ├── expected8.2.txt ├── expected8.3.txt ├── expected8.txt ├── expected9.txt ├── file.d └── run.sh ├── tc_empty_module ├── expected.txt ├── file.d └── run.sh ├── tc_empty_requests └── run.sh ├── tc_erroneous_body_content ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc_extended_ditto ├── expected1.txt ├── file.d └── run.sh ├── tc_extended_types ├── expected1.txt ├── file.d └── run.sh ├── tc_if_auto_array ├── expected.txt ├── file.d └── run.sh ├── tc_if_var ├── expected.txt ├── file.d └── run.sh ├── tc_import_symbol_list ├── .gitignore ├── file.d ├── newpackage │ └── newmodule.d └── run.sh ├── tc_incomplete_switch ├── expected1.txt ├── file.d └── run.sh ├── tc_inlay_hints ├── expected.txt ├── file.d └── run.sh ├── tc_issue558 ├── expected.txt ├── file.d └── run.sh ├── tc_locate_ufcs_function ├── barutils │ └── barutils.d ├── file.d └── run.sh ├── tc_middle_of_utf ├── expected1.txt ├── file.d └── run.sh ├── tc_module_scope_op ├── expected1.txt ├── expected2.txt ├── file1.d ├── file2.d └── run.sh ├── tc_named_mixin ├── expected1.txt ├── expected2.txt ├── file1.d ├── file2.d └── run.sh ├── tc_opaque_structs ├── expected1.txt ├── file.d └── run.sh ├── tc_pointer_type_printing ├── expected1.txt ├── file.d └── run.sh ├── tc_pointers ├── expected1.txt ├── file.d └── run.sh ├── tc_recursive_public_import ├── app.d ├── run.sh └── testing │ ├── a.d │ ├── b.d │ └── package.d ├── tc_rm_import ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc_scope_mess ├── expected1.txt ├── file1.d └── run.sh ├── tc_selective_import_list ├── expected.txt ├── file.d └── run.sh ├── tc_super_scope ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── file.d └── run.sh ├── tc_template_bang_completion ├── expected.txt ├── expected2.txt ├── expected3.txt ├── expected4.txt ├── expected5.txt ├── expected6.txt ├── expected7.txt ├── expected8.txt ├── file.d └── run.sh ├── tc_template_param_props ├── expected1.txt ├── expected2.txt ├── file.d └── run.sh ├── tc_traits ├── expected.txt ├── file.d └── run.sh ├── tc_typeof ├── expected1.txt ├── expected2.txt ├── expected3.txt ├── run.sh ├── test1.d ├── test2.d └── test3.d ├── tc_ufcs_alias_this_completion ├── alias_this_on_function.d ├── expected_alias_this_on_function_test.txt ├── expected_plenty_alias_this_defined_test.txt ├── expected_plenty_alias_this_defined_test2.txt ├── plenty_alias_this_defined.d └── run.sh ├── tc_ufcs_array_type_completion ├── expected_array_test.txt ├── file.d └── run.sh ├── tc_ufcs_calltip_in_func ├── expected.txt ├── file.d └── run.sh ├── tc_ufcs_fundamental_types_completion ├── expected_bool_test.txt ├── expected_byte_test.txt ├── expected_cdouble_test.txt ├── expected_cent_test.txt ├── expected_cfloat_test.txt ├── expected_char_test.txt ├── expected_creal_test.txt ├── expected_dchar_test.txt ├── expected_double_test.txt ├── expected_float_test.txt ├── expected_idouble_test.txt ├── expected_ifloat_test.txt ├── expected_int_test.txt ├── expected_ireal_test.txt ├── expected_long_test.txt ├── expected_real_test.txt ├── expected_short_test.txt ├── expected_ubyte_test.txt ├── expected_ucent_test.txt ├── expected_uint_test.txt ├── expected_ulong_test.txt ├── expected_ushort_test.txt ├── expected_void_test.txt ├── expected_wchar_test.txt ├── file.d └── run.sh ├── tc_ufcs_pointer_type_completion ├── expected_pointer_test.txt ├── file.d └── run.sh ├── tc_ufcs_string_and_string_literal_completion ├── expected_string_literal_test.txt ├── expected_string_test.txt ├── file.d └── run.sh └── tc_ufcs_struct_completion ├── expected_aliased_struct_test.txt ├── expected_should_not_complete_test.txt ├── expected_should_not_complete_test2.txt ├── expected_struct_test.txt ├── file.d ├── fooutils └── fooutils.d └── run.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr_info_intro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/.github/workflows/pr_info_intro.yml -------------------------------------------------------------------------------- /.github/workflows/pr_info_post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/.github/workflows/pr_info_post.yml -------------------------------------------------------------------------------- /.github/workflows/pr_info_untrusted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/.github/workflows/pr_info_untrusted.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/README.md -------------------------------------------------------------------------------- /bash-completion/completions/dcd-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/bash-completion/completions/dcd-client -------------------------------------------------------------------------------- /bash-completion/completions/dcd-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/bash-completion/completions/dcd-server -------------------------------------------------------------------------------- /ci/request_time_stats.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/ci/request_time_stats.d -------------------------------------------------------------------------------- /ci/summary_comment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/ci/summary_comment.sh -------------------------------------------------------------------------------- /ci/summary_comment_diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/ci/summary_comment_diff.sh -------------------------------------------------------------------------------- /common/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/common/dub.sdl -------------------------------------------------------------------------------- /common/dubhash.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/common/dubhash.d -------------------------------------------------------------------------------- /common/src/dcd/common/constants.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/common/src/dcd/common/constants.d -------------------------------------------------------------------------------- /common/src/dcd/common/constants2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/common/src/dcd/common/constants2.d -------------------------------------------------------------------------------- /common/src/dcd/common/dcd_version.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/common/src/dcd/common/dcd_version.d -------------------------------------------------------------------------------- /common/src/dcd/common/messages.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/common/src/dcd/common/messages.d -------------------------------------------------------------------------------- /common/src/dcd/common/socket.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/common/src/dcd/common/socket.d -------------------------------------------------------------------------------- /constants-gen/generator.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/constants-gen/generator.d -------------------------------------------------------------------------------- /constants-gen/pragma.dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/constants-gen/pragma.dd -------------------------------------------------------------------------------- /constants-gen/traits.dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/constants-gen/traits.dd -------------------------------------------------------------------------------- /constants-gen/update-constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/constants-gen/update-constants.sh -------------------------------------------------------------------------------- /dsymbol/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/.editorconfig -------------------------------------------------------------------------------- /dsymbol/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/.gitignore -------------------------------------------------------------------------------- /dsymbol/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/LICENSE_1_0.txt -------------------------------------------------------------------------------- /dsymbol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/README.md -------------------------------------------------------------------------------- /dsymbol/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/dub.json -------------------------------------------------------------------------------- /dsymbol/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/meson.build -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/builtin/names.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/builtin/names.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/builtin/symbols.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/builtin/symbols.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/cache_entry.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/cache_entry.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/conversion/first.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/conversion/first.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/conversion/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/conversion/package.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/conversion/second.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/conversion/second.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/conversion/third.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/conversion/third.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/deferred.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/deferred.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/import_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/import_.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/modulecache.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/modulecache.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/scope_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/scope_.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/semantic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/semantic.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/string_interning.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/string_interning.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/symbol.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/symbol.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/tests.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/tests.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/type_lookup.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/type_lookup.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/ufcs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/ufcs.d -------------------------------------------------------------------------------- /dsymbol/src/dsymbol/utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/src/dsymbol/utils.d -------------------------------------------------------------------------------- /dsymbol/subprojects/dcontainers.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/subprojects/dcontainers.wrap -------------------------------------------------------------------------------- /dsymbol/subprojects/dparse.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dsymbol/subprojects/dparse.wrap -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dub.json -------------------------------------------------------------------------------- /dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/dub.selections.json -------------------------------------------------------------------------------- /installer/win/EnvVarUpdate.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/installer/win/EnvVarUpdate.nsh -------------------------------------------------------------------------------- /installer/win/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/installer/win/installer.nsi -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/makefile -------------------------------------------------------------------------------- /man1/dcd-client.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/man1/dcd-client.1 -------------------------------------------------------------------------------- /man1/dcd-server.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/man1/dcd-server.1 -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/dcd/client/client.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/client/client.d -------------------------------------------------------------------------------- /src/dcd/server/autocomplete/complete.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/server/autocomplete/complete.d -------------------------------------------------------------------------------- /src/dcd/server/autocomplete/doc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/server/autocomplete/doc.d -------------------------------------------------------------------------------- /src/dcd/server/autocomplete/inlayhints.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/server/autocomplete/inlayhints.d -------------------------------------------------------------------------------- /src/dcd/server/autocomplete/localuse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/server/autocomplete/localuse.d -------------------------------------------------------------------------------- /src/dcd/server/autocomplete/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/server/autocomplete/package.d -------------------------------------------------------------------------------- /src/dcd/server/autocomplete/symbols.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/server/autocomplete/symbols.d -------------------------------------------------------------------------------- /src/dcd/server/autocomplete/util.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/server/autocomplete/util.d -------------------------------------------------------------------------------- /src/dcd/server/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/server/main.d -------------------------------------------------------------------------------- /src/dcd/server/server.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dcd/server/server.d -------------------------------------------------------------------------------- /src/dscanner-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/src/dscanner-report.json -------------------------------------------------------------------------------- /teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/teaser.png -------------------------------------------------------------------------------- /tests/extra/tc_ufcs_all_kinds/.gitignore: -------------------------------------------------------------------------------- 1 | proc_test.d 2 | -------------------------------------------------------------------------------- /tests/extra/tc_ufcs_all_kinds/generate_tests.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/extra/tc_ufcs_all_kinds/generate_tests.d -------------------------------------------------------------------------------- /tests/extra/tc_ufcs_all_kinds/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/extra/tc_ufcs_all_kinds/run.sh -------------------------------------------------------------------------------- /tests/imports/a.d: -------------------------------------------------------------------------------- 1 | module a; 2 | public { 3 | import b; 4 | } 5 | string FOO; 6 | -------------------------------------------------------------------------------- /tests/imports/b.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/b.d -------------------------------------------------------------------------------- /tests/imports/circular/a.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/circular/a.d -------------------------------------------------------------------------------- /tests/imports/circular/b.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/circular/b.d -------------------------------------------------------------------------------- /tests/imports/circular/x.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/circular/x.d -------------------------------------------------------------------------------- /tests/imports/circular/y.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/circular/y.d -------------------------------------------------------------------------------- /tests/imports/circular/z.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/circular/z.d -------------------------------------------------------------------------------- /tests/imports/object.d: -------------------------------------------------------------------------------- 1 | module object; 2 | 3 | alias string = immutable(char)[]; 4 | -------------------------------------------------------------------------------- /tests/imports/package1/module1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/package1/module1.d -------------------------------------------------------------------------------- /tests/imports/point.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/point.d -------------------------------------------------------------------------------- /tests/imports/scope_mess.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/scope_mess.d -------------------------------------------------------------------------------- /tests/imports/std/algorithm.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/array.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/ascii.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/base64.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/bigint.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/bitmanip.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/c/preserve_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/compiler.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/complex.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/concurrency.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/container.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/conv.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/cstream.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/csv.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/d/preserve_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/datetime.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/demangle.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/digest/preserve_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/encoding.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/exception.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/experimental/preserve_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/file.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/format.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/functional.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/getopt.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/internal/preserve_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/json.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/lexer.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/math.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/mathspecial.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/metastrings.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/mmfile.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/net/preserve_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/numeric.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/outbuffer.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/parallelism.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/path.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/process.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/random.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/range.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/regex.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/signals.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/socket.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/socketstream.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/stdint.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/stdio.d: -------------------------------------------------------------------------------- 1 | void writeln(string); 2 | -------------------------------------------------------------------------------- /tests/imports/std/stdiobase.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/stream.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/string.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/syserror.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/system.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/traits.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/typecons.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/typelist.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/typetuple.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/uni.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/uri.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/utf.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/uuid.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/variant.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/windows/preserve_this_directory.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/xml.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/zip.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/std/zlib.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/imports/tc620_import.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/tc620_import.d -------------------------------------------------------------------------------- /tests/imports/testfile1.d: -------------------------------------------------------------------------------- 1 | module testfile1; 2 | 3 | class Base 4 | { 5 | int z; 6 | } 7 | -------------------------------------------------------------------------------- /tests/imports/testfile2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/imports/testfile2.d -------------------------------------------------------------------------------- /tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/run_tests.sh -------------------------------------------------------------------------------- /tests/tc001/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc001/expected.txt -------------------------------------------------------------------------------- /tests/tc001/file.d: -------------------------------------------------------------------------------- 1 | import std. 2 | -------------------------------------------------------------------------------- /tests/tc001/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc001/run.sh -------------------------------------------------------------------------------- /tests/tc002/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc002/expected.txt -------------------------------------------------------------------------------- /tests/tc002/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc002/file.d -------------------------------------------------------------------------------- /tests/tc002/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc002/run.sh -------------------------------------------------------------------------------- /tests/tc003/expected1.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | uvalue v 3 | -------------------------------------------------------------------------------- /tests/tc003/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc003/expected2.txt -------------------------------------------------------------------------------- /tests/tc003/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc003/file.d -------------------------------------------------------------------------------- /tests/tc003/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc003/run.sh -------------------------------------------------------------------------------- /tests/tc004/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc004/expected.txt -------------------------------------------------------------------------------- /tests/tc004/file.d: -------------------------------------------------------------------------------- 1 | import std.st 2 | // Regression test for issue 178 3 | -------------------------------------------------------------------------------- /tests/tc004/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc004/run.sh -------------------------------------------------------------------------------- /tests/tc005/expected.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | ABC c 3 | -------------------------------------------------------------------------------- /tests/tc005/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc005/file.d -------------------------------------------------------------------------------- /tests/tc005/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc005/run.sh -------------------------------------------------------------------------------- /tests/tc006/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc006/expected1.txt -------------------------------------------------------------------------------- /tests/tc006/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc006/expected2.txt -------------------------------------------------------------------------------- /tests/tc006/expected3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc006/expected3.txt -------------------------------------------------------------------------------- /tests/tc006/expected4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc006/expected4.txt -------------------------------------------------------------------------------- /tests/tc006/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc006/file.d -------------------------------------------------------------------------------- /tests/tc006/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc006/run.sh -------------------------------------------------------------------------------- /tests/tc007/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc007/expected1.txt -------------------------------------------------------------------------------- /tests/tc007/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc007/expected2.txt -------------------------------------------------------------------------------- /tests/tc007/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc007/file.d -------------------------------------------------------------------------------- /tests/tc007/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc007/run.sh -------------------------------------------------------------------------------- /tests/tc008/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc008/expected1.txt -------------------------------------------------------------------------------- /tests/tc008/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc008/file.d -------------------------------------------------------------------------------- /tests/tc008/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc008/run.sh -------------------------------------------------------------------------------- /tests/tc009/expected1.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | this(int x) 3 | -------------------------------------------------------------------------------- /tests/tc009/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc009/expected2.txt -------------------------------------------------------------------------------- /tests/tc009/expected3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc009/expected3.txt -------------------------------------------------------------------------------- /tests/tc009/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc009/file.d -------------------------------------------------------------------------------- /tests/tc009/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc009/run.sh -------------------------------------------------------------------------------- /tests/tc010/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc010/expected1.txt -------------------------------------------------------------------------------- /tests/tc010/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc010/expected2.txt -------------------------------------------------------------------------------- /tests/tc010/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc010/file.d -------------------------------------------------------------------------------- /tests/tc010/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc010/run.sh -------------------------------------------------------------------------------- /tests/tc010/testfile1_new.d: -------------------------------------------------------------------------------- 1 | module testfile1; 2 | 3 | class Base 4 | { 5 | int z; 6 | } 7 | -------------------------------------------------------------------------------- /tests/tc010/testfile1_old.d: -------------------------------------------------------------------------------- 1 | module testfile1; 2 | 3 | class Base 4 | { 5 | int y; 6 | } 7 | -------------------------------------------------------------------------------- /tests/tc011/expected1.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | Point s 3 | -------------------------------------------------------------------------------- /tests/tc011/expected2.txt: -------------------------------------------------------------------------------- 1 | x v 2 | y v 3 | -------------------------------------------------------------------------------- /tests/tc011/file.d: -------------------------------------------------------------------------------- 1 | // Issue #228 2 | 3 | import p = point; 4 | 5 | unittest 6 | { 7 | p. 8 | } 9 | -------------------------------------------------------------------------------- /tests/tc011/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc011/run.sh -------------------------------------------------------------------------------- /tests/tc012/expected1.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | stdio M 3 | -------------------------------------------------------------------------------- /tests/tc012/expected2.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | writeln f 3 | -------------------------------------------------------------------------------- /tests/tc012/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc012/file.d -------------------------------------------------------------------------------- /tests/tc012/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc012/run.sh -------------------------------------------------------------------------------- /tests/tc013/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc013/expected1.txt -------------------------------------------------------------------------------- /tests/tc013/expected2.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | void function() 3 | -------------------------------------------------------------------------------- /tests/tc013/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc013/file.d -------------------------------------------------------------------------------- /tests/tc013/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc013/run.sh -------------------------------------------------------------------------------- /tests/tc014/expected1.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | doStuff1 f 3 | -------------------------------------------------------------------------------- /tests/tc014/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc014/expected2.txt -------------------------------------------------------------------------------- /tests/tc014/file.d: -------------------------------------------------------------------------------- 1 | import testfile2; 2 | 3 | void main() 4 | { 5 | doStu 6 | } 7 | -------------------------------------------------------------------------------- /tests/tc014/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc014/run.sh -------------------------------------------------------------------------------- /tests/tc014/testfile2_new.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc014/testfile2_new.d -------------------------------------------------------------------------------- /tests/tc014/testfile2_old.d: -------------------------------------------------------------------------------- 1 | module testfile2; 2 | 3 | void doStuff1(); 4 | -------------------------------------------------------------------------------- /tests/tc015/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc015/expected1.txt -------------------------------------------------------------------------------- /tests/tc015/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc015/expected2.txt -------------------------------------------------------------------------------- /tests/tc015/file1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc015/file1.d -------------------------------------------------------------------------------- /tests/tc015/file2.d: -------------------------------------------------------------------------------- 1 | import a = package1.module1; 2 | 3 | void main(string[] args) 4 | { 5 | a.Struct s; 6 | s. 7 | } 8 | -------------------------------------------------------------------------------- /tests/tc015/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc015/run.sh -------------------------------------------------------------------------------- /tests/tc016/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc016/expected1.txt -------------------------------------------------------------------------------- /tests/tc016/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc016/expected2.txt -------------------------------------------------------------------------------- /tests/tc016/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc016/file.d -------------------------------------------------------------------------------- /tests/tc016/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc016/run.sh -------------------------------------------------------------------------------- /tests/tc017/expected.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | BAR v 3 | FOO v 4 | S s 5 | -------------------------------------------------------------------------------- /tests/tc017/file.d: -------------------------------------------------------------------------------- 1 | module main; 2 | import mod = a; 3 | mod. 4 | -------------------------------------------------------------------------------- /tests/tc017/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc017/run.sh -------------------------------------------------------------------------------- /tests/tc018/expected1.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | alpha v 3 | bravo v 4 | -------------------------------------------------------------------------------- /tests/tc018/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc018/expected2.txt -------------------------------------------------------------------------------- /tests/tc018/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc018/file.d -------------------------------------------------------------------------------- /tests/tc018/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc018/run.sh -------------------------------------------------------------------------------- /tests/tc019/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc019/expected1.txt -------------------------------------------------------------------------------- /tests/tc019/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc019/expected2.txt -------------------------------------------------------------------------------- /tests/tc019/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc019/file.d -------------------------------------------------------------------------------- /tests/tc019/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc019/run.sh -------------------------------------------------------------------------------- /tests/tc020/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc020/expected1.txt -------------------------------------------------------------------------------- /tests/tc020/expected2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc020/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc020/file.d -------------------------------------------------------------------------------- /tests/tc020/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc020/run.sh -------------------------------------------------------------------------------- /tests/tc021/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc021/expected.txt -------------------------------------------------------------------------------- /tests/tc021/file.d: -------------------------------------------------------------------------------- 1 | i 2 | -------------------------------------------------------------------------------- /tests/tc021/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc021/run.sh -------------------------------------------------------------------------------- /tests/tc022/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc022/expected.txt -------------------------------------------------------------------------------- /tests/tc022/file.d: -------------------------------------------------------------------------------- 1 | import io = std. 2 | -------------------------------------------------------------------------------- /tests/tc022/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc022/run.sh -------------------------------------------------------------------------------- /tests/tc023/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc023/expected1.txt -------------------------------------------------------------------------------- /tests/tc023/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc023/expected2.txt -------------------------------------------------------------------------------- /tests/tc023/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc023/file.d -------------------------------------------------------------------------------- /tests/tc023/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc023/run.sh -------------------------------------------------------------------------------- /tests/tc024/expected1.txt: -------------------------------------------------------------------------------- 1 | doc1\ndoc2 2 | -------------------------------------------------------------------------------- /tests/tc024/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc024/expected2.txt -------------------------------------------------------------------------------- /tests/tc024/expected3.txt: -------------------------------------------------------------------------------- 1 | doc1\ndoc4 2 | -------------------------------------------------------------------------------- /tests/tc024/expected4.txt: -------------------------------------------------------------------------------- 1 | stuff\nwhat could go wrong? 2 | -------------------------------------------------------------------------------- /tests/tc024/expected5.txt: -------------------------------------------------------------------------------- 1 | abc\ndef 2 | -------------------------------------------------------------------------------- /tests/tc024/expected6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc024/expected6.txt -------------------------------------------------------------------------------- /tests/tc024/expected7.txt: -------------------------------------------------------------------------------- 1 | test\nwhich comment is there? 2 | -------------------------------------------------------------------------------- /tests/tc024/expected8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc024/expected8.txt -------------------------------------------------------------------------------- /tests/tc024/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc024/file.d -------------------------------------------------------------------------------- /tests/tc024/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc024/run.sh -------------------------------------------------------------------------------- /tests/tc025/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc025/expected1.txt -------------------------------------------------------------------------------- /tests/tc025/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc025/file.d -------------------------------------------------------------------------------- /tests/tc025/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc025/run.sh -------------------------------------------------------------------------------- /tests/tc026/expected1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc026/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc026/file.d -------------------------------------------------------------------------------- /tests/tc026/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc026/run.sh -------------------------------------------------------------------------------- /tests/tc027/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc027/expected1.txt -------------------------------------------------------------------------------- /tests/tc027/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc027/file.d -------------------------------------------------------------------------------- /tests/tc027/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc027/run.sh -------------------------------------------------------------------------------- /tests/tc028/expected1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc028/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc028/file.d -------------------------------------------------------------------------------- /tests/tc028/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc028/run.sh -------------------------------------------------------------------------------- /tests/tc029/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc029/expected1.txt -------------------------------------------------------------------------------- /tests/tc029/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc029/file.d -------------------------------------------------------------------------------- /tests/tc029/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc029/run.sh -------------------------------------------------------------------------------- /tests/tc030/expected1.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | BAR v 3 | FOO v 4 | S s 5 | -------------------------------------------------------------------------------- /tests/tc030/file.d: -------------------------------------------------------------------------------- 1 | import a : 2 | -------------------------------------------------------------------------------- /tests/tc030/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc030/run.sh -------------------------------------------------------------------------------- /tests/tc031/expected1.txt: -------------------------------------------------------------------------------- 1 | foo\nF 2 | bar\nB 3 | -------------------------------------------------------------------------------- /tests/tc031/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc031/file.d -------------------------------------------------------------------------------- /tests/tc031/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc031/run.sh -------------------------------------------------------------------------------- /tests/tc032/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc032/expected1.txt -------------------------------------------------------------------------------- /tests/tc032/file.d: -------------------------------------------------------------------------------- 1 | import std.stdio; -------------------------------------------------------------------------------- /tests/tc032/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc032/run.sh -------------------------------------------------------------------------------- /tests/tc033/expected1.txt: -------------------------------------------------------------------------------- 1 | stdin 5 2 | 5 3 | 21 4 | 27 5 | 33 6 | -------------------------------------------------------------------------------- /tests/tc033/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc033/file.d -------------------------------------------------------------------------------- /tests/tc033/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc033/run.sh -------------------------------------------------------------------------------- /tests/tc034/expected1.txt: -------------------------------------------------------------------------------- 1 | /imports/object.d 22 2 | 0 3 | 12 4 | -------------------------------------------------------------------------------- /tests/tc034/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc034/file.d -------------------------------------------------------------------------------- /tests/tc034/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc034/run.sh -------------------------------------------------------------------------------- /tests/tc035/expected1.txt: -------------------------------------------------------------------------------- 1 | 00000 -------------------------------------------------------------------------------- /tests/tc035/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc035/file.d -------------------------------------------------------------------------------- /tests/tc035/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc035/run.sh -------------------------------------------------------------------------------- /tests/tc036/bar.d: -------------------------------------------------------------------------------- 1 | module tc036.bar; 2 | 3 | void fooBarFunc() { } 4 | -------------------------------------------------------------------------------- /tests/tc036/expected1.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | bar M 3 | -------------------------------------------------------------------------------- /tests/tc036/expected2.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | fooBarFunc f 3 | -------------------------------------------------------------------------------- /tests/tc036/expected3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc036/file.d: -------------------------------------------------------------------------------- 1 | import tc036.bar; 2 | 3 | void main() { fooBarF } 4 | -------------------------------------------------------------------------------- /tests/tc036/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc036/run.sh -------------------------------------------------------------------------------- /tests/tc037/file.d: -------------------------------------------------------------------------------- 1 | module a.b.import 2 | -------------------------------------------------------------------------------- /tests/tc037/run.sh: -------------------------------------------------------------------------------- 1 | ../../bin/dcd-client $1 -c 11 file.d 2 | -------------------------------------------------------------------------------- /tests/tc038/excplicit_array.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc038/excplicit_array.d -------------------------------------------------------------------------------- /tests/tc038/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc038/expected1.txt -------------------------------------------------------------------------------- /tests/tc038/implicit_array.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc038/implicit_array.d -------------------------------------------------------------------------------- /tests/tc038/implicit_var.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc038/implicit_var.d -------------------------------------------------------------------------------- /tests/tc038/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc038/run.sh -------------------------------------------------------------------------------- /tests/tc039/expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc039/file.d: -------------------------------------------------------------------------------- 1 | auto genFirstSet(Rule* r) 2 | { 3 | switch (r.parts[0].) 4 | } 5 | -------------------------------------------------------------------------------- /tests/tc039/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc039/run.sh -------------------------------------------------------------------------------- /tests/tc040/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc040/file.d -------------------------------------------------------------------------------- /tests/tc040/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc040/run.sh -------------------------------------------------------------------------------- /tests/tc041/expected1.txt: -------------------------------------------------------------------------------- 1 | B.none 2 | -------------------------------------------------------------------------------- /tests/tc041/expected2.txt: -------------------------------------------------------------------------------- 1 | B.one 2 | -------------------------------------------------------------------------------- /tests/tc041/expected3.txt: -------------------------------------------------------------------------------- 1 | A.none 2 | -------------------------------------------------------------------------------- /tests/tc041/expected4.txt: -------------------------------------------------------------------------------- 1 | A.one 2 | -------------------------------------------------------------------------------- /tests/tc041/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc041/file.d -------------------------------------------------------------------------------- /tests/tc041/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc041/run.sh -------------------------------------------------------------------------------- /tests/tc042/expected1.txt: -------------------------------------------------------------------------------- 1 | A.none 2 | -------------------------------------------------------------------------------- /tests/tc042/expected2.txt: -------------------------------------------------------------------------------- 1 | B.one 2 | -------------------------------------------------------------------------------- /tests/tc042/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc042/file.d -------------------------------------------------------------------------------- /tests/tc042/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc042/run.sh -------------------------------------------------------------------------------- /tests/tc043/expected1.txt: -------------------------------------------------------------------------------- 1 | Not found 2 | -------------------------------------------------------------------------------- /tests/tc043/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc043/file.d -------------------------------------------------------------------------------- /tests/tc043/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc043/run.sh -------------------------------------------------------------------------------- /tests/tc044/expected.txt: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /tests/tc044/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc044/file.d -------------------------------------------------------------------------------- /tests/tc044/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc044/run.sh -------------------------------------------------------------------------------- /tests/tc045/expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc045/file.d: -------------------------------------------------------------------------------- 1 | this() 2 | { 3 | new class C {}; 4 | XX 5 | } 6 | -------------------------------------------------------------------------------- /tests/tc045/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc045/run.sh -------------------------------------------------------------------------------- /tests/tc046/expected.txt: -------------------------------------------------------------------------------- 1 | D言語くん 2 | -------------------------------------------------------------------------------- /tests/tc046/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc046/file.d -------------------------------------------------------------------------------- /tests/tc046/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc046/run.sh -------------------------------------------------------------------------------- /tests/tc047/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc047/expected.txt -------------------------------------------------------------------------------- /tests/tc047/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc047/file.d -------------------------------------------------------------------------------- /tests/tc047/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc047/run.sh -------------------------------------------------------------------------------- /tests/tc048/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc048/expected.txt -------------------------------------------------------------------------------- /tests/tc048/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc048/file.d -------------------------------------------------------------------------------- /tests/tc048/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc048/run.sh -------------------------------------------------------------------------------- /tests/tc049/expected1.txt: -------------------------------------------------------------------------------- 1 | stdin 26 2 | -------------------------------------------------------------------------------- /tests/tc049/expected2.txt: -------------------------------------------------------------------------------- 1 | stdin 26 2 | -------------------------------------------------------------------------------- /tests/tc049/expected3.txt: -------------------------------------------------------------------------------- 1 | stdin 140 2 | -------------------------------------------------------------------------------- /tests/tc049/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc049/file.d -------------------------------------------------------------------------------- /tests/tc049/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc049/run.sh -------------------------------------------------------------------------------- /tests/tc050/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc050/expected.txt -------------------------------------------------------------------------------- /tests/tc050/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc050/file.d -------------------------------------------------------------------------------- /tests/tc050/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc050/run.sh -------------------------------------------------------------------------------- /tests/tc051/expected.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | Foo s 3 | float k 4 | -------------------------------------------------------------------------------- /tests/tc051/expected1.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | this(int a) 3 | -------------------------------------------------------------------------------- /tests/tc051/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc051/expected2.txt -------------------------------------------------------------------------------- /tests/tc051/file.d: -------------------------------------------------------------------------------- 1 | enum UDA; struct Foo{} @UDA F 2 | -------------------------------------------------------------------------------- /tests/tc051/file1.d: -------------------------------------------------------------------------------- 1 | struct UDA{int a;} @UDA( 2 | -------------------------------------------------------------------------------- /tests/tc051/file2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc051/file2.d -------------------------------------------------------------------------------- /tests/tc051/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc051/run.sh -------------------------------------------------------------------------------- /tests/tc052/file.d: -------------------------------------------------------------------------------- 1 | void main(){assert(te.caretRightText == "tà");} 2 | -------------------------------------------------------------------------------- /tests/tc052/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc052/run.sh -------------------------------------------------------------------------------- /tests/tc053/expected.txt: -------------------------------------------------------------------------------- 1 | U 2 | -------------------------------------------------------------------------------- /tests/tc053/file.d: -------------------------------------------------------------------------------- 1 | /**U*/union Un{} Un u; 2 | -------------------------------------------------------------------------------- /tests/tc053/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc053/run.sh -------------------------------------------------------------------------------- /tests/tc054/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc054/expected.txt -------------------------------------------------------------------------------- /tests/tc054/file.d: -------------------------------------------------------------------------------- 1 | int[] a; auto b=a[0..$];b. 2 | -------------------------------------------------------------------------------- /tests/tc054/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc054/run.sh -------------------------------------------------------------------------------- /tests/tc055/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc055/expected.txt -------------------------------------------------------------------------------- /tests/tc055/file.d: -------------------------------------------------------------------------------- 1 | int[]a;void foo(){foreach(i,b;a){b.}} 2 | -------------------------------------------------------------------------------- /tests/tc055/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc055/run.sh -------------------------------------------------------------------------------- /tests/tc056/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc056/expected.txt -------------------------------------------------------------------------------- /tests/tc056/file.d: -------------------------------------------------------------------------------- 1 | auto b = true; b. 2 | -------------------------------------------------------------------------------- /tests/tc056/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc056/run.sh -------------------------------------------------------------------------------- /tests/tc057/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc057/expected.txt -------------------------------------------------------------------------------- /tests/tc057/file.d: -------------------------------------------------------------------------------- 1 | void foo(){const a = [[0]:0]; auto b = true; b.} -------------------------------------------------------------------------------- /tests/tc057/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc057/run.sh -------------------------------------------------------------------------------- /tests/tc058/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc058/expected1.txt -------------------------------------------------------------------------------- /tests/tc058/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc058/file.d -------------------------------------------------------------------------------- /tests/tc058/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc058/run.sh -------------------------------------------------------------------------------- /tests/tc059/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc059/expected1.txt -------------------------------------------------------------------------------- /tests/tc059/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc059/file.d -------------------------------------------------------------------------------- /tests/tc059/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc059/run.sh -------------------------------------------------------------------------------- /tests/tc060/file.d: -------------------------------------------------------------------------------- 1 | extern() 2 | -------------------------------------------------------------------------------- /tests/tc060/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc060/run.sh -------------------------------------------------------------------------------- /tests/tc061/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc061/expected1.txt -------------------------------------------------------------------------------- /tests/tc061/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc061/file.d -------------------------------------------------------------------------------- /tests/tc061/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc061/run.sh -------------------------------------------------------------------------------- /tests/tc062/.gitignore: -------------------------------------------------------------------------------- 1 | /expected1.txt 2 | -------------------------------------------------------------------------------- /tests/tc062/file.d: -------------------------------------------------------------------------------- 1 | void funcName() {} 2 | -------------------------------------------------------------------------------- /tests/tc062/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc062/run.sh -------------------------------------------------------------------------------- /tests/tc620/expected.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | someNumber v 3 | -------------------------------------------------------------------------------- /tests/tc620/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc620/file.d -------------------------------------------------------------------------------- /tests/tc620/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc620/run.sh -------------------------------------------------------------------------------- /tests/tc717/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc717/expected.txt -------------------------------------------------------------------------------- /tests/tc717/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc717/file.d -------------------------------------------------------------------------------- /tests/tc717/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc717/run.sh -------------------------------------------------------------------------------- /tests/tc_access_modifiers/bar.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_access_modifiers/bar.d -------------------------------------------------------------------------------- /tests/tc_access_modifiers/expected0.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_access_modifiers/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_access_modifiers/expected1.txt -------------------------------------------------------------------------------- /tests/tc_access_modifiers/expected1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_access_modifiers/expected1_1.txt -------------------------------------------------------------------------------- /tests/tc_access_modifiers/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_access_modifiers/expected2.txt -------------------------------------------------------------------------------- /tests/tc_access_modifiers/expected3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_access_modifiers/expected3.txt -------------------------------------------------------------------------------- /tests/tc_access_modifiers/file1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_access_modifiers/file1.d -------------------------------------------------------------------------------- /tests/tc_access_modifiers/file2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_access_modifiers/file2.d -------------------------------------------------------------------------------- /tests/tc_access_modifiers/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_access_modifiers/run.sh -------------------------------------------------------------------------------- /tests/tc_accesschain_type/expected.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | foo f 3 | -------------------------------------------------------------------------------- /tests/tc_accesschain_type/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_accesschain_type/file.d -------------------------------------------------------------------------------- /tests/tc_accesschain_type/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_accesschain_type/run.sh -------------------------------------------------------------------------------- /tests/tc_anon_class/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_anon_class/expected1.txt -------------------------------------------------------------------------------- /tests/tc_anon_class/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_anon_class/expected2.txt -------------------------------------------------------------------------------- /tests/tc_anon_class/file1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_anon_class/file1.d -------------------------------------------------------------------------------- /tests/tc_anon_class/file2.d: -------------------------------------------------------------------------------- 1 | void main(){auto b = new class {int j; void foo();}; b.} 2 | -------------------------------------------------------------------------------- /tests/tc_anon_class/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_anon_class/run.sh -------------------------------------------------------------------------------- /tests/tc_anon_struct/expected.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | avariable v 3 | -------------------------------------------------------------------------------- /tests/tc_anon_struct/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_anon_struct/file.d -------------------------------------------------------------------------------- /tests/tc_anon_struct/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_anon_struct/run.sh -------------------------------------------------------------------------------- /tests/tc_bang_op_or_template/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_bang_op_or_template/expected1.txt -------------------------------------------------------------------------------- /tests/tc_bang_op_or_template/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_bang_op_or_template/expected2.txt -------------------------------------------------------------------------------- /tests/tc_bang_op_or_template/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_bang_op_or_template/file.d -------------------------------------------------------------------------------- /tests/tc_bang_op_or_template/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_bang_op_or_template/run.sh -------------------------------------------------------------------------------- /tests/tc_base_template_type/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_base_template_type/expected.txt -------------------------------------------------------------------------------- /tests/tc_base_template_type/file.d: -------------------------------------------------------------------------------- 1 | void foo(T:char)(){T. } 2 | -------------------------------------------------------------------------------- /tests/tc_base_template_type/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_base_template_type/run.sh -------------------------------------------------------------------------------- /tests/tc_body_var/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_body_var/expected.txt -------------------------------------------------------------------------------- /tests/tc_body_var/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_body_var/file.d -------------------------------------------------------------------------------- /tests/tc_body_var/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_body_var/run.sh -------------------------------------------------------------------------------- /tests/tc_calltip_in_func/expected.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | void fun(A param) 3 | -------------------------------------------------------------------------------- /tests/tc_calltip_in_func/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_calltip_in_func/file.d -------------------------------------------------------------------------------- /tests/tc_calltip_in_func/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_calltip_in_func/run.sh -------------------------------------------------------------------------------- /tests/tc_casts/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_casts/expected1.txt -------------------------------------------------------------------------------- /tests/tc_casts/expected2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_casts/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_casts/file.d -------------------------------------------------------------------------------- /tests/tc_casts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_casts/run.sh -------------------------------------------------------------------------------- /tests/tc_char_dot/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_char_dot/expected.txt -------------------------------------------------------------------------------- /tests/tc_char_dot/file.d: -------------------------------------------------------------------------------- 1 | enum a = char. 2 | -------------------------------------------------------------------------------- /tests/tc_char_dot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_char_dot/run.sh -------------------------------------------------------------------------------- /tests/tc_complete_kw/expected1.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | isBig v 3 | -------------------------------------------------------------------------------- /tests/tc_complete_kw/expected3.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | internal v 3 | -------------------------------------------------------------------------------- /tests/tc_complete_kw/file1.d: -------------------------------------------------------------------------------- 1 | bool isBig; void foo(){is} 2 | -------------------------------------------------------------------------------- /tests/tc_complete_kw/file2.d: -------------------------------------------------------------------------------- 1 | struct F{bool isBig;} void foo(){F f; f.is} 2 | -------------------------------------------------------------------------------- /tests/tc_complete_kw/file3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_complete_kw/file3.d -------------------------------------------------------------------------------- /tests/tc_complete_kw/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_complete_kw/run.sh -------------------------------------------------------------------------------- /tests/tc_ctors/expected.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | mangleof k 3 | member1 v 4 | -------------------------------------------------------------------------------- /tests/tc_ctors/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ctors/file.d -------------------------------------------------------------------------------- /tests/tc_ctors/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ctors/run.sh -------------------------------------------------------------------------------- /tests/tc_currmod_fqn/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_currmod_fqn/expected1.txt -------------------------------------------------------------------------------- /tests/tc_currmod_fqn/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_currmod_fqn/expected2.txt -------------------------------------------------------------------------------- /tests/tc_currmod_fqn/expected3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_currmod_fqn/file1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_currmod_fqn/file1.d -------------------------------------------------------------------------------- /tests/tc_currmod_fqn/file2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_currmod_fqn/file2.d -------------------------------------------------------------------------------- /tests/tc_currmod_fqn/file3.d: -------------------------------------------------------------------------------- 1 | module foo.test; int x; 2 | -------------------------------------------------------------------------------- /tests/tc_currmod_fqn/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_currmod_fqn/run.sh -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ditto_scopes/expected1.txt -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ditto_scopes/expected3.txt -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ditto_scopes/expected4.txt -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected5.txt: -------------------------------------------------------------------------------- 1 | documentation for e and f 2 | -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected6.txt: -------------------------------------------------------------------------------- 1 | documentation for e and f 2 | -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ditto_scopes/expected7.txt -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected8.1.txt: -------------------------------------------------------------------------------- 1 | documentation for C.x 2 | -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected8.2.txt: -------------------------------------------------------------------------------- 1 | documentation for C.y and C.z 2 | -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected8.3.txt: -------------------------------------------------------------------------------- 1 | documentation for C.y and C.z 2 | -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected8.txt: -------------------------------------------------------------------------------- 1 | documentation for C and D 2 | -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/expected9.txt: -------------------------------------------------------------------------------- 1 | documentation for C and D 2 | -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ditto_scopes/file.d -------------------------------------------------------------------------------- /tests/tc_ditto_scopes/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ditto_scopes/run.sh -------------------------------------------------------------------------------- /tests/tc_empty_module/expected.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_empty_module/file.d: -------------------------------------------------------------------------------- 1 | import empty: 2 | -------------------------------------------------------------------------------- /tests/tc_empty_module/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_empty_module/run.sh -------------------------------------------------------------------------------- /tests/tc_empty_requests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_empty_requests/run.sh -------------------------------------------------------------------------------- /tests/tc_erroneous_body_content/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_erroneous_body_content/expected1.txt -------------------------------------------------------------------------------- /tests/tc_erroneous_body_content/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_erroneous_body_content/expected2.txt -------------------------------------------------------------------------------- /tests/tc_erroneous_body_content/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_erroneous_body_content/file.d -------------------------------------------------------------------------------- /tests/tc_erroneous_body_content/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_erroneous_body_content/run.sh -------------------------------------------------------------------------------- /tests/tc_extended_ditto/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_extended_ditto/expected1.txt -------------------------------------------------------------------------------- /tests/tc_extended_ditto/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_extended_ditto/file.d -------------------------------------------------------------------------------- /tests/tc_extended_ditto/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_extended_ditto/run.sh -------------------------------------------------------------------------------- /tests/tc_extended_types/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_extended_types/expected1.txt -------------------------------------------------------------------------------- /tests/tc_extended_types/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_extended_types/file.d -------------------------------------------------------------------------------- /tests/tc_extended_types/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_extended_types/run.sh -------------------------------------------------------------------------------- /tests/tc_if_auto_array/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_if_auto_array/expected.txt -------------------------------------------------------------------------------- /tests/tc_if_auto_array/file.d: -------------------------------------------------------------------------------- 1 | module m; void foo(){if(const s = "string"){s.}} 2 | -------------------------------------------------------------------------------- /tests/tc_if_auto_array/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_if_auto_array/run.sh -------------------------------------------------------------------------------- /tests/tc_if_var/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_if_var/expected.txt -------------------------------------------------------------------------------- /tests/tc_if_var/file.d: -------------------------------------------------------------------------------- 1 | void foo(){ if (int i = call()){ i. } } 2 | -------------------------------------------------------------------------------- /tests/tc_if_var/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_if_var/run.sh -------------------------------------------------------------------------------- /tests/tc_import_symbol_list/.gitignore: -------------------------------------------------------------------------------- 1 | /expected1.txt 2 | -------------------------------------------------------------------------------- /tests/tc_import_symbol_list/file.d: -------------------------------------------------------------------------------- 1 | import newmodule: -------------------------------------------------------------------------------- /tests/tc_import_symbol_list/newpackage/newmodule.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_import_symbol_list/newpackage/newmodule.d -------------------------------------------------------------------------------- /tests/tc_import_symbol_list/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_import_symbol_list/run.sh -------------------------------------------------------------------------------- /tests/tc_incomplete_switch/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_incomplete_switch/expected1.txt -------------------------------------------------------------------------------- /tests/tc_incomplete_switch/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_incomplete_switch/file.d -------------------------------------------------------------------------------- /tests/tc_incomplete_switch/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_incomplete_switch/run.sh -------------------------------------------------------------------------------- /tests/tc_inlay_hints/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_inlay_hints/expected.txt -------------------------------------------------------------------------------- /tests/tc_inlay_hints/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_inlay_hints/file.d -------------------------------------------------------------------------------- /tests/tc_inlay_hints/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_inlay_hints/run.sh -------------------------------------------------------------------------------- /tests/tc_issue558/expected.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | module1 M 3 | -------------------------------------------------------------------------------- /tests/tc_issue558/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_issue558/file.d -------------------------------------------------------------------------------- /tests/tc_issue558/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_issue558/run.sh -------------------------------------------------------------------------------- /tests/tc_locate_ufcs_function/barutils/barutils.d: -------------------------------------------------------------------------------- 1 | module barutils; 2 | void ufcsBar(Foo foo, string message) 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /tests/tc_locate_ufcs_function/file.d: -------------------------------------------------------------------------------- 1 | import barutils; 2 | 3 | void main() 4 | { 5 | auto foo = Foo(); 6 | foo.ufcsBar; 7 | } 8 | -------------------------------------------------------------------------------- /tests/tc_locate_ufcs_function/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_locate_ufcs_function/run.sh -------------------------------------------------------------------------------- /tests/tc_middle_of_utf/expected1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_middle_of_utf/file.d: -------------------------------------------------------------------------------- 1 | ß 2 | -------------------------------------------------------------------------------- /tests/tc_middle_of_utf/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_middle_of_utf/run.sh -------------------------------------------------------------------------------- /tests/tc_module_scope_op/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_module_scope_op/expected1.txt -------------------------------------------------------------------------------- /tests/tc_module_scope_op/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_module_scope_op/expected2.txt -------------------------------------------------------------------------------- /tests/tc_module_scope_op/file1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_module_scope_op/file1.d -------------------------------------------------------------------------------- /tests/tc_module_scope_op/file2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_module_scope_op/file2.d -------------------------------------------------------------------------------- /tests/tc_module_scope_op/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_module_scope_op/run.sh -------------------------------------------------------------------------------- /tests/tc_named_mixin/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_named_mixin/expected1.txt -------------------------------------------------------------------------------- /tests/tc_named_mixin/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_named_mixin/expected2.txt -------------------------------------------------------------------------------- /tests/tc_named_mixin/file1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_named_mixin/file1.d -------------------------------------------------------------------------------- /tests/tc_named_mixin/file2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_named_mixin/file2.d -------------------------------------------------------------------------------- /tests/tc_named_mixin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_named_mixin/run.sh -------------------------------------------------------------------------------- /tests/tc_opaque_structs/expected1.txt: -------------------------------------------------------------------------------- 1 | stdin 22 2 | -------------------------------------------------------------------------------- /tests/tc_opaque_structs/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_opaque_structs/file.d -------------------------------------------------------------------------------- /tests/tc_opaque_structs/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_opaque_structs/run.sh -------------------------------------------------------------------------------- /tests/tc_pointer_type_printing/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_pointer_type_printing/expected1.txt -------------------------------------------------------------------------------- /tests/tc_pointer_type_printing/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_pointer_type_printing/file.d -------------------------------------------------------------------------------- /tests/tc_pointer_type_printing/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_pointer_type_printing/run.sh -------------------------------------------------------------------------------- /tests/tc_pointers/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_pointers/expected1.txt -------------------------------------------------------------------------------- /tests/tc_pointers/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_pointers/file.d -------------------------------------------------------------------------------- /tests/tc_pointers/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_pointers/run.sh -------------------------------------------------------------------------------- /tests/tc_recursive_public_import/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_recursive_public_import/app.d -------------------------------------------------------------------------------- /tests/tc_recursive_public_import/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_recursive_public_import/run.sh -------------------------------------------------------------------------------- /tests/tc_recursive_public_import/testing/a.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_recursive_public_import/testing/a.d -------------------------------------------------------------------------------- /tests/tc_recursive_public_import/testing/b.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_recursive_public_import/testing/b.d -------------------------------------------------------------------------------- /tests/tc_recursive_public_import/testing/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_recursive_public_import/testing/package.d -------------------------------------------------------------------------------- /tests/tc_rm_import/expected1.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | Point s 3 | -------------------------------------------------------------------------------- /tests/tc_rm_import/expected2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_rm_import/file.d: -------------------------------------------------------------------------------- 1 | import point:; 2 | -------------------------------------------------------------------------------- /tests/tc_rm_import/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_rm_import/run.sh -------------------------------------------------------------------------------- /tests/tc_scope_mess/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_scope_mess/expected1.txt -------------------------------------------------------------------------------- /tests/tc_scope_mess/file1.d: -------------------------------------------------------------------------------- 1 | import scope_mess; FooTest ft; ft. 2 | -------------------------------------------------------------------------------- /tests/tc_scope_mess/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_scope_mess/run.sh -------------------------------------------------------------------------------- /tests/tc_selective_import_list/expected.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | Point s 3 | -------------------------------------------------------------------------------- /tests/tc_selective_import_list/file.d: -------------------------------------------------------------------------------- 1 | import point:; 2 | -------------------------------------------------------------------------------- /tests/tc_selective_import_list/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_selective_import_list/run.sh -------------------------------------------------------------------------------- /tests/tc_super_scope/expected1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_super_scope/expected2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_super_scope/expected3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_super_scope/expected3.txt -------------------------------------------------------------------------------- /tests/tc_super_scope/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_super_scope/file.d -------------------------------------------------------------------------------- /tests/tc_super_scope/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_super_scope/run.sh -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/expected.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | Wrapper!(T) 3 | -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/expected2.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | Something!(T, X) 3 | -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/expected3.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | void doSomething(T)(T someElement) 3 | -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/expected4.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | void doSomething(T)(T someElement) 3 | -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/expected5.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | void doSomething(T)(T someElement) 3 | -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/expected6.txt: -------------------------------------------------------------------------------- 1 | calltips 2 | Something!(T, X) 3 | -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/expected7.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/expected8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_template_bang_completion/file.d -------------------------------------------------------------------------------- /tests/tc_template_bang_completion/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_template_bang_completion/run.sh -------------------------------------------------------------------------------- /tests/tc_template_param_props/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_template_param_props/expected1.txt -------------------------------------------------------------------------------- /tests/tc_template_param_props/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_template_param_props/expected2.txt -------------------------------------------------------------------------------- /tests/tc_template_param_props/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_template_param_props/file.d -------------------------------------------------------------------------------- /tests/tc_template_param_props/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_template_param_props/run.sh -------------------------------------------------------------------------------- /tests/tc_traits/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_traits/expected.txt -------------------------------------------------------------------------------- /tests/tc_traits/file.d: -------------------------------------------------------------------------------- 1 | __traits( 2 | -------------------------------------------------------------------------------- /tests/tc_traits/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_traits/run.sh -------------------------------------------------------------------------------- /tests/tc_typeof/expected1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_typeof/expected1.txt -------------------------------------------------------------------------------- /tests/tc_typeof/expected2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_typeof/expected2.txt -------------------------------------------------------------------------------- /tests/tc_typeof/expected3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_typeof/expected3.txt -------------------------------------------------------------------------------- /tests/tc_typeof/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_typeof/run.sh -------------------------------------------------------------------------------- /tests/tc_typeof/test1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_typeof/test1.d -------------------------------------------------------------------------------- /tests/tc_typeof/test2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_typeof/test2.d -------------------------------------------------------------------------------- /tests/tc_typeof/test3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_typeof/test3.d -------------------------------------------------------------------------------- /tests/tc_ufcs_alias_this_completion/alias_this_on_function.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_alias_this_completion/alias_this_on_function.d -------------------------------------------------------------------------------- /tests/tc_ufcs_alias_this_completion/expected_alias_this_on_function_test.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | ufcsMatching F 3 | -------------------------------------------------------------------------------- /tests/tc_ufcs_alias_this_completion/expected_plenty_alias_this_defined_test.txt: -------------------------------------------------------------------------------- 1 | identifiers 2 | ufcsA F 3 | -------------------------------------------------------------------------------- /tests/tc_ufcs_alias_this_completion/expected_plenty_alias_this_defined_test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_alias_this_completion/expected_plenty_alias_this_defined_test2.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_alias_this_completion/plenty_alias_this_defined.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_alias_this_completion/plenty_alias_this_defined.d -------------------------------------------------------------------------------- /tests/tc_ufcs_alias_this_completion/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_alias_this_completion/run.sh -------------------------------------------------------------------------------- /tests/tc_ufcs_array_type_completion/expected_array_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_array_type_completion/expected_array_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_array_type_completion/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_array_type_completion/file.d -------------------------------------------------------------------------------- /tests/tc_ufcs_array_type_completion/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_array_type_completion/run.sh -------------------------------------------------------------------------------- /tests/tc_ufcs_calltip_in_func/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_calltip_in_func/expected.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_calltip_in_func/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_calltip_in_func/file.d -------------------------------------------------------------------------------- /tests/tc_ufcs_calltip_in_func/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_calltip_in_func/run.sh -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_bool_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_bool_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_byte_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_byte_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_cdouble_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_cdouble_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_cent_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_cent_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_cfloat_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_cfloat_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_char_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_char_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_creal_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_creal_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_dchar_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_dchar_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_double_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_double_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_float_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_float_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_idouble_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_idouble_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_ifloat_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_ifloat_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_int_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_int_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_ireal_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_ireal_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_long_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_long_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_real_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_real_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_short_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_short_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_ubyte_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_ubyte_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_ucent_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_ucent_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_uint_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_uint_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_ulong_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_ulong_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_ushort_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_ushort_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_void_test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/expected_wchar_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/expected_wchar_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/file.d -------------------------------------------------------------------------------- /tests/tc_ufcs_fundamental_types_completion/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_fundamental_types_completion/run.sh -------------------------------------------------------------------------------- /tests/tc_ufcs_pointer_type_completion/expected_pointer_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_pointer_type_completion/expected_pointer_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_pointer_type_completion/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_pointer_type_completion/file.d -------------------------------------------------------------------------------- /tests/tc_ufcs_pointer_type_completion/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_pointer_type_completion/run.sh -------------------------------------------------------------------------------- /tests/tc_ufcs_string_and_string_literal_completion/expected_string_literal_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_string_and_string_literal_completion/expected_string_literal_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_string_and_string_literal_completion/expected_string_test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_ufcs_string_and_string_literal_completion/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_string_and_string_literal_completion/file.d -------------------------------------------------------------------------------- /tests/tc_ufcs_string_and_string_literal_completion/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_string_and_string_literal_completion/run.sh -------------------------------------------------------------------------------- /tests/tc_ufcs_struct_completion/expected_aliased_struct_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_struct_completion/expected_aliased_struct_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_struct_completion/expected_should_not_complete_test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_ufcs_struct_completion/expected_should_not_complete_test2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tc_ufcs_struct_completion/expected_struct_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_struct_completion/expected_struct_test.txt -------------------------------------------------------------------------------- /tests/tc_ufcs_struct_completion/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_struct_completion/file.d -------------------------------------------------------------------------------- /tests/tc_ufcs_struct_completion/fooutils/fooutils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_struct_completion/fooutils/fooutils.d -------------------------------------------------------------------------------- /tests/tc_ufcs_struct_completion/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang-community/DCD/HEAD/tests/tc_ufcs_struct_completion/run.sh --------------------------------------------------------------------------------