├── .github └── workflows │ └── haskell-ci.yml ├── .gitignore ├── ChangeLog.md ├── GHC ├── JustDoIt.hs ├── JustDoIt │ ├── Plugin.hs │ └── Solver.hs └── LJT.hs ├── LICENSE ├── README.md ├── Setup.hs ├── examples └── Demo.hs └── ghc-justdoit.cabal /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /GHC/JustDoIt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/GHC/JustDoIt.hs -------------------------------------------------------------------------------- /GHC/JustDoIt/Plugin.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/GHC/JustDoIt/Plugin.hs -------------------------------------------------------------------------------- /GHC/JustDoIt/Solver.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/GHC/JustDoIt/Solver.hs -------------------------------------------------------------------------------- /GHC/LJT.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/GHC/LJT.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /examples/Demo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/examples/Demo.hs -------------------------------------------------------------------------------- /ghc-justdoit.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomeata/ghc-justdoit/HEAD/ghc-justdoit.cabal --------------------------------------------------------------------------------