├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── regression.md └── workflows │ └── main.yml ├── .gitignore ├── .mailmap ├── CODEOWNERS ├── DustMite ├── README ├── dustmite.d ├── polyhash.d └── splitter.d ├── Jenkinsfile ├── LICENSE.txt ├── Makefile ├── README.md ├── catdoc.d ├── changed.d ├── checkwhitespace.d ├── contributors.d ├── ddemangle.d ├── detab.d ├── dget.d ├── dman.d ├── dub.sdl ├── get_dlibcurl32.bat ├── get_dlibcurl32.d ├── latest-tag ├── man └── man1 │ └── rdmd.1 ├── posix.mak ├── rdmd.d ├── rdmd_test.d ├── setup.sh ├── test ├── test_dub.sh └── tests_extractor │ ├── ascii.d │ ├── ascii.d.ext │ ├── attributes.d │ ├── attributes.d.ext │ ├── betterc.d │ ├── betterc.d.ext │ ├── iteration.d │ └── iteration.d.ext ├── tests_extractor.d ├── tolf.d └── updatecopyright.d /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/regression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/.github/ISSUE_TEMPLATE/regression.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/.mailmap -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /DustMite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/DustMite/README -------------------------------------------------------------------------------- /DustMite/dustmite.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/DustMite/dustmite.d -------------------------------------------------------------------------------- /DustMite/polyhash.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/DustMite/polyhash.d -------------------------------------------------------------------------------- /DustMite/splitter.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/DustMite/splitter.d -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | #!/bin/env groovy 2 | library 'dlang' 3 | runPipeline() 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/README.md -------------------------------------------------------------------------------- /catdoc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/catdoc.d -------------------------------------------------------------------------------- /changed.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/changed.d -------------------------------------------------------------------------------- /checkwhitespace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/checkwhitespace.d -------------------------------------------------------------------------------- /contributors.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/contributors.d -------------------------------------------------------------------------------- /ddemangle.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/ddemangle.d -------------------------------------------------------------------------------- /detab.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/detab.d -------------------------------------------------------------------------------- /dget.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/dget.d -------------------------------------------------------------------------------- /dman.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/dman.d -------------------------------------------------------------------------------- /dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/dub.sdl -------------------------------------------------------------------------------- /get_dlibcurl32.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | rdmd -gc get_dlibcurl32.d %* 3 | -------------------------------------------------------------------------------- /get_dlibcurl32.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/get_dlibcurl32.d -------------------------------------------------------------------------------- /latest-tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/latest-tag -------------------------------------------------------------------------------- /man/man1/rdmd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/man/man1/rdmd.1 -------------------------------------------------------------------------------- /posix.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/posix.mak -------------------------------------------------------------------------------- /rdmd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/rdmd.d -------------------------------------------------------------------------------- /rdmd_test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/rdmd_test.d -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/setup.sh -------------------------------------------------------------------------------- /test/test_dub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/test/test_dub.sh -------------------------------------------------------------------------------- /test/tests_extractor/ascii.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/test/tests_extractor/ascii.d -------------------------------------------------------------------------------- /test/tests_extractor/ascii.d.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/test/tests_extractor/ascii.d.ext -------------------------------------------------------------------------------- /test/tests_extractor/attributes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/test/tests_extractor/attributes.d -------------------------------------------------------------------------------- /test/tests_extractor/attributes.d.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/test/tests_extractor/attributes.d.ext -------------------------------------------------------------------------------- /test/tests_extractor/betterc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/test/tests_extractor/betterc.d -------------------------------------------------------------------------------- /test/tests_extractor/betterc.d.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/test/tests_extractor/betterc.d.ext -------------------------------------------------------------------------------- /test/tests_extractor/iteration.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/test/tests_extractor/iteration.d -------------------------------------------------------------------------------- /test/tests_extractor/iteration.d.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/test/tests_extractor/iteration.d.ext -------------------------------------------------------------------------------- /tests_extractor.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/tests_extractor.d -------------------------------------------------------------------------------- /tolf.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/tolf.d -------------------------------------------------------------------------------- /updatecopyright.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlang/tools/HEAD/updatecopyright.d --------------------------------------------------------------------------------