├── .ghcid ├── .gitignore ├── .hlint.yaml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── apropos-tx.cabal ├── cabal-haskell.nix.project ├── cabal.project ├── examples ├── Main.hs └── Spec │ ├── Int.hs │ ├── IntPermutationGen.hs │ └── Plutarch │ ├── CostModel.hs │ └── MagicNumber.hs ├── flake.lock ├── flake.nix ├── fourmolu.yaml ├── hie.yaml ├── src └── Apropos │ ├── ContextBuilder.hs │ ├── Script.hs │ └── Tx.hs └── update-sha256map.sh /.ghcid: -------------------------------------------------------------------------------- 1 | --command="stack repl --ghc-options='-j'" --allow-eval -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/.hlint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/README.md -------------------------------------------------------------------------------- /apropos-tx.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/apropos-tx.cabal -------------------------------------------------------------------------------- /cabal-haskell.nix.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/cabal-haskell.nix.project -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/cabal.project -------------------------------------------------------------------------------- /examples/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/examples/Main.hs -------------------------------------------------------------------------------- /examples/Spec/Int.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/examples/Spec/Int.hs -------------------------------------------------------------------------------- /examples/Spec/IntPermutationGen.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/examples/Spec/IntPermutationGen.hs -------------------------------------------------------------------------------- /examples/Spec/Plutarch/CostModel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/examples/Spec/Plutarch/CostModel.hs -------------------------------------------------------------------------------- /examples/Spec/Plutarch/MagicNumber.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/examples/Spec/Plutarch/MagicNumber.hs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/flake.nix -------------------------------------------------------------------------------- /fourmolu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/fourmolu.yaml -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- 1 | cradle: 2 | cabal: 3 | -------------------------------------------------------------------------------- /src/Apropos/ContextBuilder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/src/Apropos/ContextBuilder.hs -------------------------------------------------------------------------------- /src/Apropos/Script.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/src/Apropos/Script.hs -------------------------------------------------------------------------------- /src/Apropos/Tx.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/src/Apropos/Tx.hs -------------------------------------------------------------------------------- /update-sha256map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlabs-haskell/apropos-tx/HEAD/update-sha256map.sh --------------------------------------------------------------------------------