├── .eslintignore ├── .eslintrc.json ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── assets │ └── intro_gif.gif └── workflows │ ├── docs.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── LICENSE ├── README.md ├── docs ├── In-Depth │ ├── builtins.md │ ├── chaining.md │ ├── decorators.md │ ├── expanding.md │ ├── literals.md │ ├── macro_labels.md │ ├── markers.md │ ├── overview.md │ ├── parameters.md │ └── repetitions.md └── Links │ └── playground.md ├── package.json ├── playground ├── README.md ├── components │ ├── Editor.tsx │ └── Runnable.tsx ├── css │ ├── App.module.css │ └── global.css ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ └── index.tsx ├── tsconfig.json └── utils │ └── transpile.ts ├── src ├── actions.ts ├── cli │ ├── formatter.ts │ ├── index.ts │ └── transform.ts ├── index.ts ├── nativeMacros.ts ├── transformer.ts ├── type-resolve │ ├── chainingTypes.ts │ ├── declarations.ts │ └── index.ts ├── utils.ts └── watcher │ └── index.ts ├── tests ├── integrated │ ├── builtins │ │ ├── decompose.test.ts │ │ ├── define.test.ts │ │ ├── i.test.ts │ │ ├── ident.test.ts │ │ ├── includes.test.ts │ │ ├── inline.test.ts │ │ ├── kindof.test.ts │ │ ├── length.test.ts │ │ ├── map.test.ts │ │ ├── propsOfType.test.ts │ │ ├── raw.test.ts │ │ ├── slice.test.ts │ │ ├── ts.test.ts │ │ └── typeToString.test.ts │ ├── expand.test.ts │ ├── labels │ │ ├── block.test.ts │ │ ├── for.test.ts │ │ ├── foriter.test.ts │ │ ├── if.test.ts │ │ └── while.test.ts │ └── markers │ │ ├── accumulator.test.ts │ │ └── save.test.ts ├── snapshots │ ├── artifacts │ │ ├── builtins_const.test.js │ │ ├── builtins_decompose.test.js │ │ ├── builtins_define.test.js │ │ ├── builtins_i.test.js │ │ ├── builtins_ident.test.js │ │ ├── builtins_includes.test.js │ │ ├── builtins_inline.test.js │ │ ├── builtins_inlineFunc.test.js │ │ ├── builtins_kindof.test.js │ │ ├── builtins_length.test.js │ │ ├── builtins_map.test.js │ │ ├── builtins_propsOfType.test.js │ │ ├── builtins_raw.test.js │ │ ├── builtins_slice.test.js │ │ ├── builtins_stores.test.js │ │ ├── builtins_ts.test.js │ │ ├── builtins_typeToString.test.js │ │ ├── expand.test.js │ │ ├── labels_block.test.js │ │ ├── labels_for.test.js │ │ ├── labels_foriter.test.js │ │ ├── labels_if.test.js │ │ ├── labels_while.test.js │ │ ├── markers_accumulator.test.js │ │ ├── markers_save.test.js │ │ └── markers_var.test.js │ └── index.ts └── tsconfig.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/assets/intro_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.github/assets/intro_gif.gif -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | ** -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/README.md -------------------------------------------------------------------------------- /docs/In-Depth/builtins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/builtins.md -------------------------------------------------------------------------------- /docs/In-Depth/chaining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/chaining.md -------------------------------------------------------------------------------- /docs/In-Depth/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/decorators.md -------------------------------------------------------------------------------- /docs/In-Depth/expanding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/expanding.md -------------------------------------------------------------------------------- /docs/In-Depth/literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/literals.md -------------------------------------------------------------------------------- /docs/In-Depth/macro_labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/macro_labels.md -------------------------------------------------------------------------------- /docs/In-Depth/markers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/markers.md -------------------------------------------------------------------------------- /docs/In-Depth/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/overview.md -------------------------------------------------------------------------------- /docs/In-Depth/parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/parameters.md -------------------------------------------------------------------------------- /docs/In-Depth/repetitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/In-Depth/repetitions.md -------------------------------------------------------------------------------- /docs/Links/playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/docs/Links/playground.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/package.json -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/components/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/components/Editor.tsx -------------------------------------------------------------------------------- /playground/components/Runnable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/components/Runnable.tsx -------------------------------------------------------------------------------- /playground/css/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/css/App.module.css -------------------------------------------------------------------------------- /playground/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/css/global.css -------------------------------------------------------------------------------- /playground/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/next-env.d.ts -------------------------------------------------------------------------------- /playground/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/next.config.js -------------------------------------------------------------------------------- /playground/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/package-lock.json -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/pages/_app.tsx -------------------------------------------------------------------------------- /playground/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/pages/index.tsx -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /playground/utils/transpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/playground/utils/transpile.ts -------------------------------------------------------------------------------- /src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/actions.ts -------------------------------------------------------------------------------- /src/cli/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/cli/formatter.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/cli/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/cli/transform.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/nativeMacros.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/nativeMacros.ts -------------------------------------------------------------------------------- /src/transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/transformer.ts -------------------------------------------------------------------------------- /src/type-resolve/chainingTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/type-resolve/chainingTypes.ts -------------------------------------------------------------------------------- /src/type-resolve/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/type-resolve/declarations.ts -------------------------------------------------------------------------------- /src/type-resolve/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/type-resolve/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/watcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/src/watcher/index.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/decompose.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/decompose.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/define.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/define.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/i.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/i.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/ident.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/ident.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/includes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/includes.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/inline.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/inline.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/kindof.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/kindof.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/length.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/length.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/map.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/map.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/propsOfType.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/propsOfType.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/raw.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/raw.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/slice.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/ts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/ts.test.ts -------------------------------------------------------------------------------- /tests/integrated/builtins/typeToString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/builtins/typeToString.test.ts -------------------------------------------------------------------------------- /tests/integrated/expand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/expand.test.ts -------------------------------------------------------------------------------- /tests/integrated/labels/block.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/labels/block.test.ts -------------------------------------------------------------------------------- /tests/integrated/labels/for.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/labels/for.test.ts -------------------------------------------------------------------------------- /tests/integrated/labels/foriter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/labels/foriter.test.ts -------------------------------------------------------------------------------- /tests/integrated/labels/if.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/labels/if.test.ts -------------------------------------------------------------------------------- /tests/integrated/labels/while.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/labels/while.test.ts -------------------------------------------------------------------------------- /tests/integrated/markers/accumulator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/markers/accumulator.test.ts -------------------------------------------------------------------------------- /tests/integrated/markers/save.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/integrated/markers/save.test.ts -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_const.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_const.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_decompose.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_decompose.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_define.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_define.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_i.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_i.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_ident.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_ident.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_includes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_includes.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_inline.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_inline.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_inlineFunc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_inlineFunc.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_kindof.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_kindof.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_length.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_length.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_map.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_map.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_propsOfType.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_propsOfType.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_raw.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_raw.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_slice.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_slice.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_stores.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_stores.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_ts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_ts.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/builtins_typeToString.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/builtins_typeToString.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/expand.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/expand.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/labels_block.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/labels_block.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/labels_for.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/labels_for.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/labels_foriter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/labels_foriter.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/labels_if.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/labels_if.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/labels_while.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/labels_while.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/markers_accumulator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/markers_accumulator.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/markers_save.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/markers_save.test.js -------------------------------------------------------------------------------- /tests/snapshots/artifacts/markers_var.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/artifacts/markers_var.test.js -------------------------------------------------------------------------------- /tests/snapshots/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/snapshots/index.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleFeud/ts-macros/HEAD/tsconfig.json --------------------------------------------------------------------------------