├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.yaml ├── reprinter.cabal ├── src └── Text │ ├── Reprinter.hs │ └── Reprinter │ ├── Example.lhs │ └── StringLike.hs ├── stack.yaml ├── stack.yaml.lock └── tests └── hspec ├── Hspec.hs └── ReprinterSpec.hs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/README.md -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/package.yaml -------------------------------------------------------------------------------- /reprinter.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/reprinter.cabal -------------------------------------------------------------------------------- /src/Text/Reprinter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/src/Text/Reprinter.hs -------------------------------------------------------------------------------- /src/Text/Reprinter/Example.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/src/Text/Reprinter/Example.lhs -------------------------------------------------------------------------------- /src/Text/Reprinter/StringLike.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/src/Text/Reprinter/StringLike.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /tests/hspec/Hspec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | -------------------------------------------------------------------------------- /tests/hspec/ReprinterSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camfort/reprinter/HEAD/tests/hspec/ReprinterSpec.hs --------------------------------------------------------------------------------