├── .clj-kondo ├── config.edn └── imports │ ├── babashka │ └── fs │ │ ├── babashka │ │ └── fs.clj_kondo │ │ └── config.edn │ ├── etaoin │ └── etaoin │ │ ├── config.edn │ │ └── etaoin │ │ ├── api.clj_kondo │ │ ├── api2.clj_kondo │ │ └── hooks_util.clj_kondo │ ├── http-kit │ └── http-kit │ │ ├── config.edn │ │ └── httpkit │ │ └── with_channel.clj │ ├── lread │ └── status-line │ │ └── config.edn │ ├── rewrite-clj │ └── rewrite-clj │ │ └── config.edn │ └── taoensso │ └── encore │ ├── config.edn │ └── taoensso │ ├── encore.clj │ └── encore_hooks.clj ├── .codecov.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── docs.md │ └── feature_request.md └── workflows │ ├── code-coverage.yml │ ├── libs-test.yml │ ├── native-image-test.yml │ ├── publish.yml │ ├── setup-planck │ └── action.yml │ ├── shared-setup │ └── action.yml │ └── unit-test.yml ├── .gitignore ├── CHANGELOG.adoc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── ORIGINATOR ├── README.adoc ├── bb.edn ├── deps.edn ├── doc ├── 01-user-guide.adoc ├── 02-developer-guide.adoc ├── 03-faq.adoc ├── 04-maintainer-guide.adoc ├── cljdoc.edn ├── contributors.edn ├── design │ ├── 01-merging-rewrite-clj-and-rewrite-cljs.adoc │ ├── custom-node-skipping.adoc │ └── namespaced-elements.adoc ├── diff-notes │ ├── rewrite-clj-v0-lang-clj-and-rewrite-clj-v1-lang-clj.adoc │ ├── rewrite-clj-v0-lang-clj-and-rewrite-cljs-lang-cljs.adoc │ ├── rewrite-clj-v1-lang-cljs-and-rewrite-clj-v1-lang-clj-documented-only.adoc │ ├── rewrite-clj-v1-lang-cljs-and-rewrite-clj-v1-lang-clj.adoc │ └── rewrite-cljs-lang-cljs-and-rewrite-clj-v1-lang-cljs.adoc ├── generated │ └── contributors │ │ ├── AndreaCrotti.png │ │ ├── FiV0.png │ │ ├── NoahTheDuke.png │ │ ├── PEZ.png │ │ ├── RickMoynihan.png │ │ ├── SevereOverfl0w.png │ │ ├── anmonteiro.png │ │ ├── arrdem.png │ │ ├── awb99.png │ │ ├── bbatsov.png │ │ ├── bobbicodes.png │ │ ├── borkdude.png │ │ ├── brian-dawn.png │ │ ├── conao3.png │ │ ├── danielcompton.png │ │ ├── doby162.png │ │ ├── drorbemet.png │ │ ├── eraserhd.png │ │ ├── ericdallo.png │ │ ├── expez.png │ │ ├── fazzone.png │ │ ├── ferdinand-beyer.png │ │ ├── frenchy64.png │ │ ├── green-coder.png │ │ ├── guoyongxin.png │ │ ├── ikappaki.png │ │ ├── immoh.png │ │ ├── ivarref.png │ │ ├── jespera.png │ │ ├── kkinnear.png │ │ ├── lread.png │ │ ├── luxbock.png │ │ ├── mainej.png │ │ ├── martinklepsch.png │ │ ├── matanox.png │ │ ├── mhuebert.png │ │ ├── mikekap.png │ │ ├── mjayprateek.png │ │ ├── mrkam2.png │ │ ├── msgodf.png │ │ ├── mynomoto.png │ │ ├── optevo.png │ │ ├── p4ulcristian.png │ │ ├── plexus.png │ │ ├── rfhayashi.png │ │ ├── rgkirch.png │ │ ├── rundis.png │ │ ├── shaunlebron.png │ │ ├── shaunxcode.png │ │ ├── shmish111.png │ │ ├── slipset.png │ │ ├── snoe.png │ │ ├── sogaiu.png │ │ ├── stathissideris.png │ │ ├── swannodette.png │ │ ├── theronic.png │ │ ├── vemv.png │ │ ├── weavejester.png │ │ ├── xsc.png │ │ └── zcaudate.png ├── introduction-parsed-nodes.drawio ├── introduction-parsed-nodes.png ├── map-nodes.drawio ├── map-nodes.png ├── rewrite-clj-logo.png └── rewrite-clj-logo.svg ├── fig.cljs.edn ├── package.json ├── resources └── clj-kondo.exports │ └── rewrite-clj │ └── rewrite-clj │ └── config.edn ├── script ├── apply_import_vars.clj ├── ci_publish.clj ├── ci_unit_tests.clj ├── clean.clj ├── clj_graal │ ├── gen_test_runner.clj │ └── template │ │ ├── by_ns_test_runner.clj.template │ │ ├── by_var_test_runner.clj.template │ │ └── direct_runner.clj.template ├── cljdoc_preview.clj ├── code_info │ └── ns_lister.clj ├── dev_repl.clj ├── doc_update_readme.clj ├── download_deps.clj ├── gen-user-guide-reader-macro-table.clj ├── helper │ ├── deps_patcher.clj │ ├── env.clj │ ├── graal.clj │ ├── jdk.clj │ ├── main.clj │ ├── os.clj │ └── shell.clj ├── lint.clj ├── lint_eastwood.clj ├── lint_kondo.clj ├── lread │ └── apply_import_vars.clj ├── outdated.clj ├── publish.clj ├── resources │ └── logback.xml ├── sci_test_gen_publics.clj ├── sci_test_runner.clj ├── test_clj.clj ├── test_clj_watch.clj ├── test_cljs.clj ├── test_cljs_watch.clj ├── test_coverage.clj ├── test_doc.clj ├── test_jvm_sci.clj ├── test_libs.clj ├── test_native.clj ├── test_native_sci.clj └── test_shadow_cljs.clj ├── shadow-cljs.edn ├── src ├── rewrite_clj.cljc └── rewrite_clj │ ├── custom_zipper │ ├── core.cljc │ ├── switchable.cljc │ └── utils.cljc │ ├── interop.cljc │ ├── node.cljc │ ├── node │ ├── coercer.cljc │ ├── comment.cljc │ ├── extras.cljc │ ├── fn.cljc │ ├── forms.cljc │ ├── integer.cljc │ ├── keyword.cljc │ ├── meta.cljc │ ├── namespaced_map.cljc │ ├── protocols.cljc │ ├── quote.cljc │ ├── reader_macro.cljc │ ├── regex.cljc │ ├── seq.cljc │ ├── string.clj │ ├── stringz.cljc │ ├── token.cljc │ ├── uneval.cljc │ └── whitespace.cljc │ ├── paredit.cljc │ ├── parser.cljc │ ├── parser │ ├── core.cljc │ ├── impl.cljc │ ├── keyword.cljc │ ├── namespaced_map.cljc │ ├── string.cljc │ ├── token.cljc │ └── whitespace.cljc │ ├── reader.cljc │ ├── zip.cljc │ └── zip │ ├── base.cljc │ ├── context.cljc │ ├── edit.clj │ ├── editz.cljc │ ├── find.clj │ ├── findz.cljc │ ├── insert.cljc │ ├── move.cljc │ ├── options.cljc │ ├── remove.clj │ ├── removez.cljc │ ├── seq.clj │ ├── seqz.cljc │ ├── subedit.cljc │ ├── walk.cljc │ └── whitespace.cljc ├── template └── rewrite_clj │ ├── node.cljc │ ├── node │ └── string.clj │ ├── zip.cljc │ └── zip │ ├── edit.clj │ ├── find.clj │ ├── remove.clj │ └── seq.clj ├── test-isolated └── rewrite_clj │ └── zip_solo_test.cljc ├── test-resources └── code-samples │ └── clojurescript │ └── fa4b8d853be08120cb864782e4ea48826b9d757e │ └── src │ └── main │ ├── cljs │ └── cljs │ │ └── core.cljs │ └── clojure │ └── cljs │ └── analyzer.cljc ├── test └── rewrite_clj │ ├── custom_zipper │ ├── core_test.cljc │ └── utils_test.cljc │ ├── examples │ └── cljx_test.cljc │ ├── hello_figwheel.cljs │ ├── node │ ├── coercer_test.cljc │ ├── equals_test.cljc │ ├── generators.cljc │ ├── integer_test.cljc │ └── node_test.cljc │ ├── node_test.cljc │ ├── paredit_test.cljc │ ├── parser_test.cljc │ ├── regression_test.cljc │ ├── transform_test.cljc │ ├── zip │ ├── base_test.cljc │ ├── editz_test.cljc │ ├── findz_test.cljc │ ├── insert_test.cljc │ ├── move_test.cljc │ ├── removez_test.cljc │ ├── seqz_test.cljc │ ├── subedit_test.cljc │ ├── test_helper.cljc │ ├── walk_test.cljc │ └── whitespace_test.cljc │ └── zip_test.cljc └── tests.edn /.clj-kondo/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/babashka/fs/babashka/fs.clj_kondo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/babashka/fs/babashka/fs.clj_kondo -------------------------------------------------------------------------------- /.clj-kondo/imports/babashka/fs/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/babashka/fs/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/etaoin/etaoin/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/etaoin/etaoin/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/etaoin/etaoin/etaoin/api.clj_kondo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/etaoin/etaoin/etaoin/api.clj_kondo -------------------------------------------------------------------------------- /.clj-kondo/imports/etaoin/etaoin/etaoin/api2.clj_kondo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/etaoin/etaoin/etaoin/api2.clj_kondo -------------------------------------------------------------------------------- /.clj-kondo/imports/etaoin/etaoin/etaoin/hooks_util.clj_kondo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/etaoin/etaoin/etaoin/hooks_util.clj_kondo -------------------------------------------------------------------------------- /.clj-kondo/imports/http-kit/http-kit/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/http-kit/http-kit/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/http-kit/http-kit/httpkit/with_channel.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/http-kit/http-kit/httpkit/with_channel.clj -------------------------------------------------------------------------------- /.clj-kondo/imports/lread/status-line/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/lread/status-line/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/rewrite-clj/rewrite-clj/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/rewrite-clj/rewrite-clj/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/taoensso/encore/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/taoensso/encore/config.edn -------------------------------------------------------------------------------- /.clj-kondo/imports/taoensso/encore/taoensso/encore.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/taoensso/encore/taoensso/encore.clj -------------------------------------------------------------------------------- /.clj-kondo/imports/taoensso/encore/taoensso/encore_hooks.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.clj-kondo/imports/taoensso/encore/taoensso/encore_hooks.clj -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/ISSUE_TEMPLATE/docs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/code-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/workflows/code-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/libs-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/workflows/libs-test.yml -------------------------------------------------------------------------------- /.github/workflows/native-image-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/workflows/native-image-test.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/setup-planck/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/workflows/setup-planck/action.yml -------------------------------------------------------------------------------- /.github/workflows/shared-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/workflows/shared-setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/CHANGELOG.adoc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/LICENSE -------------------------------------------------------------------------------- /ORIGINATOR: -------------------------------------------------------------------------------- 1 | @xsc 2 | -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/README.adoc -------------------------------------------------------------------------------- /bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/bb.edn -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/deps.edn -------------------------------------------------------------------------------- /doc/01-user-guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/01-user-guide.adoc -------------------------------------------------------------------------------- /doc/02-developer-guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/02-developer-guide.adoc -------------------------------------------------------------------------------- /doc/03-faq.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/03-faq.adoc -------------------------------------------------------------------------------- /doc/04-maintainer-guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/04-maintainer-guide.adoc -------------------------------------------------------------------------------- /doc/cljdoc.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/cljdoc.edn -------------------------------------------------------------------------------- /doc/contributors.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/contributors.edn -------------------------------------------------------------------------------- /doc/design/01-merging-rewrite-clj-and-rewrite-cljs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/design/01-merging-rewrite-clj-and-rewrite-cljs.adoc -------------------------------------------------------------------------------- /doc/design/custom-node-skipping.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/design/custom-node-skipping.adoc -------------------------------------------------------------------------------- /doc/design/namespaced-elements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/design/namespaced-elements.adoc -------------------------------------------------------------------------------- /doc/diff-notes/rewrite-clj-v0-lang-clj-and-rewrite-clj-v1-lang-clj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/diff-notes/rewrite-clj-v0-lang-clj-and-rewrite-clj-v1-lang-clj.adoc -------------------------------------------------------------------------------- /doc/diff-notes/rewrite-clj-v0-lang-clj-and-rewrite-cljs-lang-cljs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/diff-notes/rewrite-clj-v0-lang-clj-and-rewrite-cljs-lang-cljs.adoc -------------------------------------------------------------------------------- /doc/diff-notes/rewrite-clj-v1-lang-cljs-and-rewrite-clj-v1-lang-clj-documented-only.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/diff-notes/rewrite-clj-v1-lang-cljs-and-rewrite-clj-v1-lang-clj-documented-only.adoc -------------------------------------------------------------------------------- /doc/diff-notes/rewrite-clj-v1-lang-cljs-and-rewrite-clj-v1-lang-clj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/diff-notes/rewrite-clj-v1-lang-cljs-and-rewrite-clj-v1-lang-clj.adoc -------------------------------------------------------------------------------- /doc/diff-notes/rewrite-cljs-lang-cljs-and-rewrite-clj-v1-lang-cljs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/diff-notes/rewrite-cljs-lang-cljs-and-rewrite-clj-v1-lang-cljs.adoc -------------------------------------------------------------------------------- /doc/generated/contributors/AndreaCrotti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/AndreaCrotti.png -------------------------------------------------------------------------------- /doc/generated/contributors/FiV0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/FiV0.png -------------------------------------------------------------------------------- /doc/generated/contributors/NoahTheDuke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/NoahTheDuke.png -------------------------------------------------------------------------------- /doc/generated/contributors/PEZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/PEZ.png -------------------------------------------------------------------------------- /doc/generated/contributors/RickMoynihan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/RickMoynihan.png -------------------------------------------------------------------------------- /doc/generated/contributors/SevereOverfl0w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/SevereOverfl0w.png -------------------------------------------------------------------------------- /doc/generated/contributors/anmonteiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/anmonteiro.png -------------------------------------------------------------------------------- /doc/generated/contributors/arrdem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/arrdem.png -------------------------------------------------------------------------------- /doc/generated/contributors/awb99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/awb99.png -------------------------------------------------------------------------------- /doc/generated/contributors/bbatsov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/bbatsov.png -------------------------------------------------------------------------------- /doc/generated/contributors/bobbicodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/bobbicodes.png -------------------------------------------------------------------------------- /doc/generated/contributors/borkdude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/borkdude.png -------------------------------------------------------------------------------- /doc/generated/contributors/brian-dawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/brian-dawn.png -------------------------------------------------------------------------------- /doc/generated/contributors/conao3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/conao3.png -------------------------------------------------------------------------------- /doc/generated/contributors/danielcompton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/danielcompton.png -------------------------------------------------------------------------------- /doc/generated/contributors/doby162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/doby162.png -------------------------------------------------------------------------------- /doc/generated/contributors/drorbemet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/drorbemet.png -------------------------------------------------------------------------------- /doc/generated/contributors/eraserhd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/eraserhd.png -------------------------------------------------------------------------------- /doc/generated/contributors/ericdallo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/ericdallo.png -------------------------------------------------------------------------------- /doc/generated/contributors/expez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/expez.png -------------------------------------------------------------------------------- /doc/generated/contributors/fazzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/fazzone.png -------------------------------------------------------------------------------- /doc/generated/contributors/ferdinand-beyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/ferdinand-beyer.png -------------------------------------------------------------------------------- /doc/generated/contributors/frenchy64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/frenchy64.png -------------------------------------------------------------------------------- /doc/generated/contributors/green-coder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/green-coder.png -------------------------------------------------------------------------------- /doc/generated/contributors/guoyongxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/guoyongxin.png -------------------------------------------------------------------------------- /doc/generated/contributors/ikappaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/ikappaki.png -------------------------------------------------------------------------------- /doc/generated/contributors/immoh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/immoh.png -------------------------------------------------------------------------------- /doc/generated/contributors/ivarref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/ivarref.png -------------------------------------------------------------------------------- /doc/generated/contributors/jespera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/jespera.png -------------------------------------------------------------------------------- /doc/generated/contributors/kkinnear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/kkinnear.png -------------------------------------------------------------------------------- /doc/generated/contributors/lread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/lread.png -------------------------------------------------------------------------------- /doc/generated/contributors/luxbock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/luxbock.png -------------------------------------------------------------------------------- /doc/generated/contributors/mainej.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/mainej.png -------------------------------------------------------------------------------- /doc/generated/contributors/martinklepsch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/martinklepsch.png -------------------------------------------------------------------------------- /doc/generated/contributors/matanox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/matanox.png -------------------------------------------------------------------------------- /doc/generated/contributors/mhuebert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/mhuebert.png -------------------------------------------------------------------------------- /doc/generated/contributors/mikekap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/mikekap.png -------------------------------------------------------------------------------- /doc/generated/contributors/mjayprateek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/mjayprateek.png -------------------------------------------------------------------------------- /doc/generated/contributors/mrkam2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/mrkam2.png -------------------------------------------------------------------------------- /doc/generated/contributors/msgodf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/msgodf.png -------------------------------------------------------------------------------- /doc/generated/contributors/mynomoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/mynomoto.png -------------------------------------------------------------------------------- /doc/generated/contributors/optevo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/optevo.png -------------------------------------------------------------------------------- /doc/generated/contributors/p4ulcristian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/p4ulcristian.png -------------------------------------------------------------------------------- /doc/generated/contributors/plexus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/plexus.png -------------------------------------------------------------------------------- /doc/generated/contributors/rfhayashi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/rfhayashi.png -------------------------------------------------------------------------------- /doc/generated/contributors/rgkirch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/rgkirch.png -------------------------------------------------------------------------------- /doc/generated/contributors/rundis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/rundis.png -------------------------------------------------------------------------------- /doc/generated/contributors/shaunlebron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/shaunlebron.png -------------------------------------------------------------------------------- /doc/generated/contributors/shaunxcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/shaunxcode.png -------------------------------------------------------------------------------- /doc/generated/contributors/shmish111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/shmish111.png -------------------------------------------------------------------------------- /doc/generated/contributors/slipset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/slipset.png -------------------------------------------------------------------------------- /doc/generated/contributors/snoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/snoe.png -------------------------------------------------------------------------------- /doc/generated/contributors/sogaiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/sogaiu.png -------------------------------------------------------------------------------- /doc/generated/contributors/stathissideris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/stathissideris.png -------------------------------------------------------------------------------- /doc/generated/contributors/swannodette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/swannodette.png -------------------------------------------------------------------------------- /doc/generated/contributors/theronic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/theronic.png -------------------------------------------------------------------------------- /doc/generated/contributors/vemv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/vemv.png -------------------------------------------------------------------------------- /doc/generated/contributors/weavejester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/weavejester.png -------------------------------------------------------------------------------- /doc/generated/contributors/xsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/xsc.png -------------------------------------------------------------------------------- /doc/generated/contributors/zcaudate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/generated/contributors/zcaudate.png -------------------------------------------------------------------------------- /doc/introduction-parsed-nodes.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/introduction-parsed-nodes.drawio -------------------------------------------------------------------------------- /doc/introduction-parsed-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/introduction-parsed-nodes.png -------------------------------------------------------------------------------- /doc/map-nodes.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/map-nodes.drawio -------------------------------------------------------------------------------- /doc/map-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/map-nodes.png -------------------------------------------------------------------------------- /doc/rewrite-clj-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/rewrite-clj-logo.png -------------------------------------------------------------------------------- /doc/rewrite-clj-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/doc/rewrite-clj-logo.svg -------------------------------------------------------------------------------- /fig.cljs.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/fig.cljs.edn -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/package.json -------------------------------------------------------------------------------- /resources/clj-kondo.exports/rewrite-clj/rewrite-clj/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/resources/clj-kondo.exports/rewrite-clj/rewrite-clj/config.edn -------------------------------------------------------------------------------- /script/apply_import_vars.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/apply_import_vars.clj -------------------------------------------------------------------------------- /script/ci_publish.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/ci_publish.clj -------------------------------------------------------------------------------- /script/ci_unit_tests.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/ci_unit_tests.clj -------------------------------------------------------------------------------- /script/clean.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/clean.clj -------------------------------------------------------------------------------- /script/clj_graal/gen_test_runner.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/clj_graal/gen_test_runner.clj -------------------------------------------------------------------------------- /script/clj_graal/template/by_ns_test_runner.clj.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/clj_graal/template/by_ns_test_runner.clj.template -------------------------------------------------------------------------------- /script/clj_graal/template/by_var_test_runner.clj.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/clj_graal/template/by_var_test_runner.clj.template -------------------------------------------------------------------------------- /script/clj_graal/template/direct_runner.clj.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/clj_graal/template/direct_runner.clj.template -------------------------------------------------------------------------------- /script/cljdoc_preview.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/cljdoc_preview.clj -------------------------------------------------------------------------------- /script/code_info/ns_lister.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/code_info/ns_lister.clj -------------------------------------------------------------------------------- /script/dev_repl.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/dev_repl.clj -------------------------------------------------------------------------------- /script/doc_update_readme.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/doc_update_readme.clj -------------------------------------------------------------------------------- /script/download_deps.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/download_deps.clj -------------------------------------------------------------------------------- /script/gen-user-guide-reader-macro-table.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/gen-user-guide-reader-macro-table.clj -------------------------------------------------------------------------------- /script/helper/deps_patcher.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/helper/deps_patcher.clj -------------------------------------------------------------------------------- /script/helper/env.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/helper/env.clj -------------------------------------------------------------------------------- /script/helper/graal.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/helper/graal.clj -------------------------------------------------------------------------------- /script/helper/jdk.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/helper/jdk.clj -------------------------------------------------------------------------------- /script/helper/main.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/helper/main.clj -------------------------------------------------------------------------------- /script/helper/os.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/helper/os.clj -------------------------------------------------------------------------------- /script/helper/shell.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/helper/shell.clj -------------------------------------------------------------------------------- /script/lint.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/lint.clj -------------------------------------------------------------------------------- /script/lint_eastwood.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/lint_eastwood.clj -------------------------------------------------------------------------------- /script/lint_kondo.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/lint_kondo.clj -------------------------------------------------------------------------------- /script/lread/apply_import_vars.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/lread/apply_import_vars.clj -------------------------------------------------------------------------------- /script/outdated.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/outdated.clj -------------------------------------------------------------------------------- /script/publish.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/publish.clj -------------------------------------------------------------------------------- /script/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/resources/logback.xml -------------------------------------------------------------------------------- /script/sci_test_gen_publics.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/sci_test_gen_publics.clj -------------------------------------------------------------------------------- /script/sci_test_runner.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/sci_test_runner.clj -------------------------------------------------------------------------------- /script/test_clj.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_clj.clj -------------------------------------------------------------------------------- /script/test_clj_watch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_clj_watch.clj -------------------------------------------------------------------------------- /script/test_cljs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_cljs.clj -------------------------------------------------------------------------------- /script/test_cljs_watch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_cljs_watch.clj -------------------------------------------------------------------------------- /script/test_coverage.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_coverage.clj -------------------------------------------------------------------------------- /script/test_doc.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_doc.clj -------------------------------------------------------------------------------- /script/test_jvm_sci.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_jvm_sci.clj -------------------------------------------------------------------------------- /script/test_libs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_libs.clj -------------------------------------------------------------------------------- /script/test_native.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_native.clj -------------------------------------------------------------------------------- /script/test_native_sci.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_native_sci.clj -------------------------------------------------------------------------------- /script/test_shadow_cljs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/script/test_shadow_cljs.clj -------------------------------------------------------------------------------- /shadow-cljs.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/shadow-cljs.edn -------------------------------------------------------------------------------- /src/rewrite_clj.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/custom_zipper/core.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/custom_zipper/core.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/custom_zipper/switchable.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/custom_zipper/switchable.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/custom_zipper/utils.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/custom_zipper/utils.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/interop.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/interop.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/coercer.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/coercer.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/comment.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/comment.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/extras.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/extras.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/fn.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/fn.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/forms.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/forms.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/integer.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/integer.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/keyword.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/keyword.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/meta.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/meta.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/namespaced_map.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/namespaced_map.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/protocols.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/protocols.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/quote.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/quote.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/reader_macro.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/reader_macro.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/regex.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/regex.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/seq.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/seq.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/string.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/string.clj -------------------------------------------------------------------------------- /src/rewrite_clj/node/stringz.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/stringz.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/token.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/token.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/uneval.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/uneval.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/node/whitespace.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/node/whitespace.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/paredit.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/paredit.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/parser.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/parser.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/parser/core.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/parser/core.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/parser/impl.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/parser/impl.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/parser/keyword.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/parser/keyword.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/parser/namespaced_map.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/parser/namespaced_map.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/parser/string.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/parser/string.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/parser/token.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/parser/token.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/parser/whitespace.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/parser/whitespace.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/reader.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/reader.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/base.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/base.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/context.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/context.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/edit.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/edit.clj -------------------------------------------------------------------------------- /src/rewrite_clj/zip/editz.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/editz.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/find.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/find.clj -------------------------------------------------------------------------------- /src/rewrite_clj/zip/findz.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/findz.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/insert.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/insert.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/move.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/move.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/options.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/options.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/remove.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/remove.clj -------------------------------------------------------------------------------- /src/rewrite_clj/zip/removez.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/removez.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/seq.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/seq.clj -------------------------------------------------------------------------------- /src/rewrite_clj/zip/seqz.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/seqz.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/subedit.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/subedit.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/walk.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/walk.cljc -------------------------------------------------------------------------------- /src/rewrite_clj/zip/whitespace.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/src/rewrite_clj/zip/whitespace.cljc -------------------------------------------------------------------------------- /template/rewrite_clj/node.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/template/rewrite_clj/node.cljc -------------------------------------------------------------------------------- /template/rewrite_clj/node/string.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/template/rewrite_clj/node/string.clj -------------------------------------------------------------------------------- /template/rewrite_clj/zip.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/template/rewrite_clj/zip.cljc -------------------------------------------------------------------------------- /template/rewrite_clj/zip/edit.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/template/rewrite_clj/zip/edit.clj -------------------------------------------------------------------------------- /template/rewrite_clj/zip/find.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/template/rewrite_clj/zip/find.clj -------------------------------------------------------------------------------- /template/rewrite_clj/zip/remove.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/template/rewrite_clj/zip/remove.clj -------------------------------------------------------------------------------- /template/rewrite_clj/zip/seq.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/template/rewrite_clj/zip/seq.clj -------------------------------------------------------------------------------- /test-isolated/rewrite_clj/zip_solo_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test-isolated/rewrite_clj/zip_solo_test.cljc -------------------------------------------------------------------------------- /test-resources/code-samples/clojurescript/fa4b8d853be08120cb864782e4ea48826b9d757e/src/main/cljs/cljs/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test-resources/code-samples/clojurescript/fa4b8d853be08120cb864782e4ea48826b9d757e/src/main/cljs/cljs/core.cljs -------------------------------------------------------------------------------- /test-resources/code-samples/clojurescript/fa4b8d853be08120cb864782e4ea48826b9d757e/src/main/clojure/cljs/analyzer.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test-resources/code-samples/clojurescript/fa4b8d853be08120cb864782e4ea48826b9d757e/src/main/clojure/cljs/analyzer.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/custom_zipper/core_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/custom_zipper/core_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/custom_zipper/utils_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/custom_zipper/utils_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/examples/cljx_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/examples/cljx_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/hello_figwheel.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/hello_figwheel.cljs -------------------------------------------------------------------------------- /test/rewrite_clj/node/coercer_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/node/coercer_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/node/equals_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/node/equals_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/node/generators.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/node/generators.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/node/integer_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/node/integer_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/node/node_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/node/node_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/node_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/node_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/paredit_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/paredit_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/parser_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/parser_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/regression_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/regression_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/transform_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/transform_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/base_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/base_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/editz_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/editz_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/findz_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/findz_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/insert_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/insert_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/move_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/move_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/removez_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/removez_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/seqz_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/seqz_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/subedit_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/subedit_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/test_helper.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/test_helper.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/walk_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/walk_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip/whitespace_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip/whitespace_test.cljc -------------------------------------------------------------------------------- /test/rewrite_clj/zip_test.cljc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/test/rewrite_clj/zip_test.cljc -------------------------------------------------------------------------------- /tests.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clj-commons/rewrite-clj/HEAD/tests.edn --------------------------------------------------------------------------------