├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Setup.hs ├── archive └── .empty ├── lib └── PrepGhcJS │ ├── .spot │ ├── Cabal │ └── Utils.hs │ ├── Network │ └── Utils.hs │ ├── Shell │ └── Utils.hs │ ├── Types.hs │ └── Utils.hs ├── prepare-ghcjs.cabal ├── spec-lts ├── boot.yaml ├── cabal │ ├── .arcconfig │ ├── .gitignore │ ├── .travis.yml │ ├── Cabal │ │ ├── Cabal.cabal │ │ ├── Distribution │ │ │ ├── Compat │ │ │ │ ├── Binary.hs │ │ │ │ ├── Binary │ │ │ │ │ ├── Class.hs │ │ │ │ │ └── Generic.hs │ │ │ │ ├── CopyFile.hs │ │ │ │ ├── CreatePipe.hs │ │ │ │ ├── Environment.hs │ │ │ │ ├── Exception.hs │ │ │ │ ├── GetShortPathName.hs │ │ │ │ ├── Internal │ │ │ │ │ └── TempFile.hs │ │ │ │ ├── MonadFail.hs │ │ │ │ ├── ReadP.hs │ │ │ │ └── Semigroup.hs │ │ │ ├── Compiler.hs │ │ │ ├── GetOpt.hs │ │ │ ├── InstalledPackageInfo.hs │ │ │ ├── Lex.hs │ │ │ ├── License.hs │ │ │ ├── Make.hs │ │ │ ├── ModuleName.hs │ │ │ ├── Package.hs │ │ │ ├── PackageDescription.hs │ │ │ ├── PackageDescription │ │ │ │ ├── Check.hs │ │ │ │ ├── Configuration.hs │ │ │ │ ├── Parse.hs │ │ │ │ ├── PrettyPrint.hs │ │ │ │ └── Utils.hs │ │ │ ├── ParseUtils.hs │ │ │ ├── ReadE.hs │ │ │ ├── Simple.hs │ │ │ ├── Simple │ │ │ │ ├── Bench.hs │ │ │ │ ├── Build.hs │ │ │ │ ├── Build │ │ │ │ │ ├── Macros.hs │ │ │ │ │ └── PathsModule.hs │ │ │ │ ├── BuildPaths.hs │ │ │ │ ├── BuildTarget.hs │ │ │ │ ├── CCompiler.hs │ │ │ │ ├── Command.hs │ │ │ │ ├── Compiler.hs │ │ │ │ ├── Configure.hs │ │ │ │ ├── GHC.hs │ │ │ │ ├── GHC │ │ │ │ │ ├── IPI642.hs │ │ │ │ │ ├── IPIConvert.hs │ │ │ │ │ ├── ImplInfo.hs │ │ │ │ │ └── Internal.hs │ │ │ │ ├── GHCJS.hs │ │ │ │ ├── Haddock.hs │ │ │ │ ├── HaskellSuite.hs │ │ │ │ ├── Hpc.hs │ │ │ │ ├── Install.hs │ │ │ │ ├── InstallDirs.hs │ │ │ │ ├── JHC.hs │ │ │ │ ├── LHC.hs │ │ │ │ ├── LocalBuildInfo.hs │ │ │ │ ├── PackageIndex.hs │ │ │ │ ├── PreProcess.hs │ │ │ │ ├── PreProcess │ │ │ │ │ └── Unlit.hs │ │ │ │ ├── Program.hs │ │ │ │ ├── Program │ │ │ │ │ ├── Ar.hs │ │ │ │ │ ├── Builtin.hs │ │ │ │ │ ├── Db.hs │ │ │ │ │ ├── Find.hs │ │ │ │ │ ├── GHC.hs │ │ │ │ │ ├── HcPkg.hs │ │ │ │ │ ├── Hpc.hs │ │ │ │ │ ├── Internal.hs │ │ │ │ │ ├── Ld.hs │ │ │ │ │ ├── Run.hs │ │ │ │ │ ├── Script.hs │ │ │ │ │ ├── Strip.hs │ │ │ │ │ └── Types.hs │ │ │ │ ├── Register.hs │ │ │ │ ├── Setup.hs │ │ │ │ ├── SrcDist.hs │ │ │ │ ├── Test.hs │ │ │ │ ├── Test │ │ │ │ │ ├── ExeV10.hs │ │ │ │ │ ├── LibV09.hs │ │ │ │ │ └── Log.hs │ │ │ │ ├── UHC.hs │ │ │ │ ├── UserHooks.hs │ │ │ │ └── Utils.hs │ │ │ ├── System.hs │ │ │ ├── TestSuite.hs │ │ │ ├── Text.hs │ │ │ ├── Utils │ │ │ │ └── NubList.hs │ │ │ ├── Verbosity.hs │ │ │ └── Version.hs │ │ ├── LICENSE │ │ ├── Language │ │ │ └── Haskell │ │ │ │ └── Extension.hs │ │ ├── Makefile │ │ ├── README.md │ │ ├── Setup.hs │ │ ├── changelog │ │ ├── doc │ │ │ ├── Cabal.css │ │ │ ├── developing-packages.markdown │ │ │ ├── index.markdown │ │ │ ├── installing-packages.markdown │ │ │ └── misc.markdown │ │ ├── misc │ │ │ ├── gen-extra-source-files.sh │ │ │ └── travis-diff-files.sh │ │ ├── prologue.txt │ │ └── tests │ │ │ ├── PackageTests.hs │ │ │ ├── PackageTests │ │ │ ├── .gitignore │ │ │ ├── AllowNewer │ │ │ │ ├── AllowNewer.cabal │ │ │ │ ├── benchmarks │ │ │ │ │ └── Bench.hs │ │ │ │ ├── src │ │ │ │ │ └── Foo.hs │ │ │ │ └── tests │ │ │ │ │ └── Test.hs │ │ │ ├── BenchmarkExeV10 │ │ │ │ ├── Foo.hs │ │ │ │ ├── benchmarks │ │ │ │ │ └── bench-Foo.hs │ │ │ │ └── my.cabal │ │ │ ├── BenchmarkOptions │ │ │ │ ├── BenchmarkOptions.cabal │ │ │ │ └── test-BenchmarkOptions.hs │ │ │ ├── BenchmarkStanza │ │ │ │ ├── Check.hs │ │ │ │ └── my.cabal │ │ │ ├── BuildDeps │ │ │ │ ├── GlobalBuildDepsNotAdditive1 │ │ │ │ │ ├── Check.hs │ │ │ │ │ ├── GlobalBuildDepsNotAdditive1.cabal │ │ │ │ │ └── MyLibrary.hs │ │ │ │ ├── GlobalBuildDepsNotAdditive2 │ │ │ │ │ ├── Check.hs │ │ │ │ │ ├── GlobalBuildDepsNotAdditive2.cabal │ │ │ │ │ └── lemon.hs │ │ │ │ ├── InternalLibrary0 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ └── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ ├── InternalLibrary1 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ └── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ ├── InternalLibrary2 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ ├── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ │ └── to-install │ │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ │ └── my.cabal │ │ │ │ ├── InternalLibrary3 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ ├── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ │ └── to-install │ │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ │ └── my.cabal │ │ │ │ ├── InternalLibrary4 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ ├── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ │ └── to-install │ │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ │ └── my.cabal │ │ │ │ ├── SameDepsAllRound │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── SameDepsAllRound.cabal │ │ │ │ │ ├── lemon.hs │ │ │ │ │ └── pineapple.hs │ │ │ │ ├── TargetSpecificDeps1 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── lemon.hs │ │ │ │ │ └── my.cabal │ │ │ │ ├── TargetSpecificDeps2 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── lemon.hs │ │ │ │ │ └── my.cabal │ │ │ │ └── TargetSpecificDeps3 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── lemon.hs │ │ │ │ │ └── my.cabal │ │ │ ├── BuildTargetErrors │ │ │ │ ├── BuildTargetErrors.cabal │ │ │ │ └── Main.hs │ │ │ ├── BuildTestSuiteDetailedV09 │ │ │ │ └── Dummy2.hs │ │ │ ├── BuildableField │ │ │ │ ├── BuildableField.cabal │ │ │ │ └── Main.hs │ │ │ ├── CMain │ │ │ │ ├── Bar.hs │ │ │ │ ├── foo.c │ │ │ │ └── my.cabal │ │ │ ├── DeterministicAr │ │ │ │ ├── Check.hs │ │ │ │ ├── Lib.hs │ │ │ │ └── my.cabal │ │ │ ├── DuplicateModuleName │ │ │ │ ├── DuplicateModuleName.cabal │ │ │ │ ├── src │ │ │ │ │ └── Foo.hs │ │ │ │ ├── tests │ │ │ │ │ └── Foo.hs │ │ │ │ └── tests2 │ │ │ │ │ └── Foo.hs │ │ │ ├── EmptyLib │ │ │ │ └── empty │ │ │ │ │ └── empty.cabal │ │ │ ├── GhcPkgGuess │ │ │ │ ├── SameDirectory │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ ├── ghc │ │ │ │ │ └── ghc-pkg │ │ │ │ ├── SameDirectoryGhcVersion │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ ├── ghc-7.10 │ │ │ │ │ └── ghc-pkg-ghc-7.10 │ │ │ │ ├── SameDirectoryVersion │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ ├── ghc-7.10 │ │ │ │ │ └── ghc-pkg-7.10 │ │ │ │ ├── Symlink │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ └── bin │ │ │ │ │ │ ├── ghc │ │ │ │ │ │ └── ghc-pkg │ │ │ │ ├── SymlinkGhcVersion │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ └── bin │ │ │ │ │ │ ├── ghc-7.10 │ │ │ │ │ │ └── ghc-pkg-7.10 │ │ │ │ └── SymlinkVersion │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ └── bin │ │ │ │ │ ├── ghc-7.10 │ │ │ │ │ └── ghc-pkg-ghc-7.10 │ │ │ ├── Haddock │ │ │ │ ├── CPP.hs │ │ │ │ ├── Literate.lhs │ │ │ │ ├── NoCPP.hs │ │ │ │ ├── Simple.hs │ │ │ │ └── my.cabal │ │ │ ├── HaddockNewline │ │ │ │ ├── A.hs │ │ │ │ ├── ChangeLog.md │ │ │ │ ├── HaddockNewline.cabal │ │ │ │ ├── LICENSE │ │ │ │ └── Setup.hs │ │ │ ├── Options.hs │ │ │ ├── OrderFlags │ │ │ │ ├── Foo.hs │ │ │ │ └── my.cabal │ │ │ ├── PackageTester.hs │ │ │ ├── PathsModule │ │ │ │ ├── Executable │ │ │ │ │ ├── Main.hs │ │ │ │ │ └── my.cabal │ │ │ │ └── Library │ │ │ │ │ └── my.cabal │ │ │ ├── PreProcess │ │ │ │ ├── Foo.hsc │ │ │ │ ├── Main.hs │ │ │ │ └── my.cabal │ │ │ ├── PreProcessExtraSources │ │ │ │ ├── Foo.hsc │ │ │ │ ├── Main.hs │ │ │ │ └── my.cabal │ │ │ ├── ReexportedModules │ │ │ │ ├── LICENSE │ │ │ │ └── ReexportedModules.cabal │ │ │ ├── TemplateHaskell │ │ │ │ ├── dynamic │ │ │ │ │ ├── Exe.hs │ │ │ │ │ ├── Lib.hs │ │ │ │ │ ├── TH.hs │ │ │ │ │ └── my.cabal │ │ │ │ ├── profiling │ │ │ │ │ ├── Exe.hs │ │ │ │ │ ├── Lib.hs │ │ │ │ │ ├── TH.hs │ │ │ │ │ └── my.cabal │ │ │ │ └── vanilla │ │ │ │ │ ├── Exe.hs │ │ │ │ │ ├── Lib.hs │ │ │ │ │ ├── TH.hs │ │ │ │ │ └── my.cabal │ │ │ ├── TestNameCollision │ │ │ │ ├── child │ │ │ │ │ ├── Child.hs │ │ │ │ │ ├── child.cabal │ │ │ │ │ └── tests │ │ │ │ │ │ └── Test.hs │ │ │ │ └── parent │ │ │ │ │ ├── Parent.hs │ │ │ │ │ └── parent.cabal │ │ │ ├── TestOptions │ │ │ │ ├── TestOptions.cabal │ │ │ │ └── test-TestOptions.hs │ │ │ ├── TestStanza │ │ │ │ ├── Check.hs │ │ │ │ └── my.cabal │ │ │ ├── TestSuiteTests │ │ │ │ ├── ExeV10 │ │ │ │ │ ├── Check.hs │ │ │ │ │ ├── Foo.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-Foo.hs │ │ │ │ │ │ └── test-Short.hs │ │ │ │ └── LibV09 │ │ │ │ │ ├── Lib.hs │ │ │ │ │ ├── LibV09.cabal │ │ │ │ │ └── tests │ │ │ │ │ └── Deadlock.hs │ │ │ ├── Tests.hs │ │ │ ├── UniqueIPID │ │ │ │ ├── P1 │ │ │ │ │ ├── M.hs │ │ │ │ │ └── my.cabal │ │ │ │ └── P2 │ │ │ │ │ ├── M.hs │ │ │ │ │ └── my.cabal │ │ │ └── multInst │ │ │ │ └── my.cabal │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ ├── Test │ │ │ ├── Laws.hs │ │ │ └── QuickCheck │ │ │ │ └── Utils.hs │ │ │ ├── UnitTests.hs │ │ │ ├── UnitTests │ │ │ └── Distribution │ │ │ │ ├── Compat │ │ │ │ ├── CreatePipe.hs │ │ │ │ └── ReadP.hs │ │ │ │ ├── Simple │ │ │ │ ├── Program │ │ │ │ │ └── Internal.hs │ │ │ │ └── Utils.hs │ │ │ │ ├── System.hs │ │ │ │ ├── Utils │ │ │ │ └── NubList.hs │ │ │ │ └── Version.hs │ │ │ ├── hackage │ │ │ ├── check.sh │ │ │ ├── download.sh │ │ │ └── unpack.sh │ │ │ └── misc │ │ │ └── ghc-supported-languages.hs │ ├── HACKING.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── cabal-install │ │ ├── .ghci │ │ ├── Distribution │ │ │ └── Client │ │ │ │ ├── BuildReports │ │ │ │ ├── Anonymous.hs │ │ │ │ ├── Storage.hs │ │ │ │ ├── Types.hs │ │ │ │ └── Upload.hs │ │ │ │ ├── BuildTarget.hs │ │ │ │ ├── Check.hs │ │ │ │ ├── CmdBuild.hs │ │ │ │ ├── CmdConfigure.hs │ │ │ │ ├── CmdRepl.hs │ │ │ │ ├── Compat │ │ │ │ ├── ExecutablePath.hs │ │ │ │ ├── FilePerms.hs │ │ │ │ ├── Process.hs │ │ │ │ ├── Semaphore.hs │ │ │ │ └── Time.hs │ │ │ │ ├── ComponentDeps.hs │ │ │ │ ├── Config.hs │ │ │ │ ├── Configure.hs │ │ │ │ ├── Dependency.hs │ │ │ │ ├── Dependency │ │ │ │ ├── Modular.hs │ │ │ │ ├── Modular │ │ │ │ │ ├── Assignment.hs │ │ │ │ │ ├── Builder.hs │ │ │ │ │ ├── Configured.hs │ │ │ │ │ ├── ConfiguredConversion.hs │ │ │ │ │ ├── ConflictSet.hs │ │ │ │ │ ├── Cycles.hs │ │ │ │ │ ├── Dependency.hs │ │ │ │ │ ├── Explore.hs │ │ │ │ │ ├── Flag.hs │ │ │ │ │ ├── Index.hs │ │ │ │ │ ├── IndexConversion.hs │ │ │ │ │ ├── Linking.hs │ │ │ │ │ ├── Log.hs │ │ │ │ │ ├── Message.hs │ │ │ │ │ ├── PSQ.hs │ │ │ │ │ ├── Package.hs │ │ │ │ │ ├── Preference.hs │ │ │ │ │ ├── Solver.hs │ │ │ │ │ ├── Tree.hs │ │ │ │ │ ├── Validate.hs │ │ │ │ │ ├── Var.hs │ │ │ │ │ └── Version.hs │ │ │ │ ├── TopDown.hs │ │ │ │ ├── TopDown │ │ │ │ │ ├── Constraints.hs │ │ │ │ │ └── Types.hs │ │ │ │ └── Types.hs │ │ │ │ ├── DistDirLayout.hs │ │ │ │ ├── Exec.hs │ │ │ │ ├── Fetch.hs │ │ │ │ ├── FetchUtils.hs │ │ │ │ ├── FileMonitor.hs │ │ │ │ ├── Freeze.hs │ │ │ │ ├── GZipUtils.hs │ │ │ │ ├── GenBounds.hs │ │ │ │ ├── Get.hs │ │ │ │ ├── Glob.hs │ │ │ │ ├── GlobalFlags.hs │ │ │ │ ├── Haddock.hs │ │ │ │ ├── HttpUtils.hs │ │ │ │ ├── IndexUtils.hs │ │ │ │ ├── Init.hs │ │ │ │ ├── Init │ │ │ │ ├── Heuristics.hs │ │ │ │ ├── Licenses.hs │ │ │ │ └── Types.hs │ │ │ │ ├── Install.hs │ │ │ │ ├── InstallPlan.hs │ │ │ │ ├── InstallSymlink.hs │ │ │ │ ├── JobControl.hs │ │ │ │ ├── List.hs │ │ │ │ ├── Manpage.hs │ │ │ │ ├── PackageHash.hs │ │ │ │ ├── PackageIndex.hs │ │ │ │ ├── PackageUtils.hs │ │ │ │ ├── ParseUtils.hs │ │ │ │ ├── PkgConfigDb.hs │ │ │ │ ├── PlanIndex.hs │ │ │ │ ├── ProjectBuilding.hs │ │ │ │ ├── ProjectConfig.hs │ │ │ │ ├── ProjectConfig │ │ │ │ ├── Legacy.hs │ │ │ │ └── Types.hs │ │ │ │ ├── ProjectOrchestration.hs │ │ │ │ ├── ProjectPlanOutput.hs │ │ │ │ ├── ProjectPlanning.hs │ │ │ │ ├── ProjectPlanning │ │ │ │ └── Types.hs │ │ │ │ ├── RebuildMonad.hs │ │ │ │ ├── Run.hs │ │ │ │ ├── Sandbox.hs │ │ │ │ ├── Sandbox │ │ │ │ ├── Index.hs │ │ │ │ ├── PackageEnvironment.hs │ │ │ │ ├── Timestamp.hs │ │ │ │ └── Types.hs │ │ │ │ ├── Security │ │ │ │ └── HTTP.hs │ │ │ │ ├── Setup.hs │ │ │ │ ├── SetupWrapper.hs │ │ │ │ ├── SrcDist.hs │ │ │ │ ├── Tar.hs │ │ │ │ ├── Targets.hs │ │ │ │ ├── Types.hs │ │ │ │ ├── Update.hs │ │ │ │ ├── Upload.hs │ │ │ │ ├── Utils.hs │ │ │ │ ├── Utils │ │ │ │ ├── Json.hs │ │ │ │ └── LabeledGraph.hs │ │ │ │ ├── Win32SelfUpgrade.hs │ │ │ │ └── World.hs │ │ ├── LICENSE │ │ ├── Main.hs │ │ ├── README.md │ │ ├── Setup.hs │ │ ├── bash-completion │ │ │ └── cabal │ │ ├── bootstrap.sh │ │ ├── cabal-install.cabal │ │ ├── cbits │ │ │ └── getnumcores.c │ │ └── changelog │ ├── cabal.project │ ├── ghc-packages │ ├── setup-dev.sh │ └── stack.yaml ├── ghcjs-base.cabal └── thrunner.js ├── spec-lts6 ├── boot.yaml └── ghcjs-base.cabal ├── spec-lts8 ├── aeson │ ├── Data │ │ ├── Aeson.hs │ │ └── Aeson │ │ │ ├── Encode.hs │ │ │ ├── Encoding.hs │ │ │ ├── Encoding │ │ │ ├── Builder.hs │ │ │ └── Internal.hs │ │ │ ├── Internal.hs │ │ │ ├── Internal │ │ │ ├── Functions.hs │ │ │ └── Time.hs │ │ │ ├── Parser.hs │ │ │ ├── Parser │ │ │ ├── Internal.hs │ │ │ └── Time.hs │ │ │ ├── TH.hs │ │ │ ├── Text.hs │ │ │ ├── Types.hs │ │ │ └── Types │ │ │ ├── Class.hs │ │ │ ├── FromJSON.hs │ │ │ ├── Generic.hs │ │ │ ├── Internal.hs │ │ │ └── ToJSON.hs │ ├── LICENSE │ ├── README.markdown │ ├── Setup.lhs │ ├── aeson.cabal │ ├── benchmarks │ │ ├── AesonCompareAutoInstances.hs │ │ ├── AesonEncode.hs │ │ ├── AesonFoldable.hs │ │ ├── AesonMap.hs │ │ ├── AesonParse.hs │ │ ├── AesonTuples.hs │ │ ├── Compare.hs │ │ ├── Compare │ │ │ ├── BufferBuilder.hs │ │ │ ├── JsonBench.hs │ │ │ └── JsonBuilder.hs │ │ ├── CompareWithJSON.hs │ │ ├── Dates.hs │ │ ├── JsonParse.hs │ │ ├── Makefile │ │ ├── Micro.hs │ │ ├── Options.hs │ │ ├── ReadFile.hs │ │ ├── Typed.hs │ │ ├── Typed │ │ │ ├── Common.hs │ │ │ ├── Generic.hs │ │ │ ├── Manual.hs │ │ │ └── TH.hs │ │ ├── aeson-benchmarks.cabal │ │ ├── bench-parse.py │ │ ├── encode.py │ │ ├── json-data │ │ │ ├── buffer-builder.json │ │ │ ├── dates-fract.json │ │ │ ├── dates.json │ │ │ ├── example.json │ │ │ ├── geometry.json │ │ │ ├── integers.json │ │ │ ├── jp10.json │ │ │ ├── jp100.json │ │ │ ├── jp50.json │ │ │ ├── numbers.json │ │ │ ├── twitter1.json │ │ │ ├── twitter10.json │ │ │ ├── twitter100.json │ │ │ ├── twitter20.json │ │ │ └── twitter50.json │ │ └── parse.py │ ├── cbits │ │ └── unescape_string.c │ ├── changelog.md │ ├── examples │ │ ├── Generic.hs │ │ ├── Simplest.hs │ │ ├── TemplateHaskell.hs │ │ ├── Twitter.hs │ │ ├── Twitter │ │ │ ├── Generic.hs │ │ │ ├── Manual.hs │ │ │ └── TH.hs │ │ └── aeson-examples.cabal │ ├── ffi │ │ └── Data │ │ │ └── Aeson │ │ │ └── Parser │ │ │ └── Unescape.hs │ ├── include │ │ ├── incoherent-compat.h │ │ └── overlapping-compat.h │ ├── pure │ │ └── Data │ │ │ └── Aeson │ │ │ └── Parser │ │ │ └── Unescape.hs │ └── tests │ │ ├── DataFamilies │ │ ├── Encoders.hs │ │ ├── Instances.hs │ │ ├── Properties.hs │ │ └── Types.hs │ │ ├── Encoders.hs │ │ ├── Functions.hs │ │ ├── Instances.hs │ │ ├── Options.hs │ │ ├── Properties.hs │ │ ├── Tests.hs │ │ ├── Types.hs │ │ ├── UnitTests.hs │ │ └── UnitTests │ │ └── NullaryConstructors.hs ├── base-pure │ ├── Control │ │ ├── Applicative.hs │ │ ├── Arrow.hs │ │ ├── Category.hs │ │ ├── Concurrent.hs │ │ ├── Concurrent │ │ │ ├── Chan.hs │ │ │ ├── MVar.hs │ │ │ ├── QSem.hs │ │ │ └── QSemN.hs │ │ ├── Exception.hs │ │ ├── Exception │ │ │ └── Base.hs │ │ ├── Monad.hs │ │ └── Monad │ │ │ ├── Fail.hs │ │ │ ├── Fix.hs │ │ │ ├── IO │ │ │ └── Class.hs │ │ │ ├── Instances.hs │ │ │ ├── ST.hs │ │ │ ├── ST │ │ │ ├── Imp.hs │ │ │ ├── Lazy.hs │ │ │ ├── Lazy │ │ │ │ ├── Imp.hs │ │ │ │ ├── Safe.hs │ │ │ │ └── Unsafe.hs │ │ │ ├── Safe.hs │ │ │ ├── Strict.hs │ │ │ └── Unsafe.hs │ │ │ └── Zip.hs │ ├── Data │ │ ├── Bifunctor.hs │ │ ├── Bits.hs │ │ ├── Bool.hs │ │ ├── Char.hs │ │ ├── Coerce.hs │ │ ├── Complex.hs │ │ ├── Data.hs │ │ ├── Dynamic.hs │ │ ├── Either.hs │ │ ├── Eq.hs │ │ ├── Fixed.hs │ │ ├── Foldable.hs │ │ ├── Function.hs │ │ ├── Functor.hs │ │ ├── Functor │ │ │ ├── Classes.hs │ │ │ ├── Compose.hs │ │ │ ├── Const.hs │ │ │ ├── Identity.hs │ │ │ ├── Product.hs │ │ │ └── Sum.hs │ │ ├── IORef.hs │ │ ├── Int.hs │ │ ├── Ix.hs │ │ ├── Kind.hs │ │ ├── List.hs │ │ ├── List │ │ │ └── NonEmpty.hs │ │ ├── Maybe.hs │ │ ├── Monoid.hs │ │ ├── OldList.hs │ │ ├── Ord.hs │ │ ├── Proxy.hs │ │ ├── Ratio.hs │ │ ├── STRef.hs │ │ ├── STRef │ │ │ ├── Lazy.hs │ │ │ └── Strict.hs │ │ ├── Semigroup.hs │ │ ├── String.hs │ │ ├── Traversable.hs │ │ ├── Tuple.hs │ │ ├── Type │ │ │ ├── Bool.hs │ │ │ ├── Coercion.hs │ │ │ └── Equality.hs │ │ ├── Typeable.hs │ │ ├── Typeable │ │ │ └── Internal.hs │ │ ├── Unique.hs │ │ ├── Version.hs │ │ ├── Void.hs │ │ └── Word.hs │ ├── Debug │ │ └── Trace.hs │ ├── Foreign.hs │ ├── Foreign │ │ ├── C.hs │ │ ├── C │ │ │ ├── Error.hs │ │ │ ├── String.hs │ │ │ └── Types.hs │ │ ├── Concurrent.hs │ │ ├── ForeignPtr.hs │ │ ├── ForeignPtr │ │ │ ├── Imp.hs │ │ │ ├── Safe.hs │ │ │ └── Unsafe.hs │ │ ├── Marshal.hs │ │ ├── Marshal │ │ │ ├── Alloc.hs │ │ │ ├── Array.hs │ │ │ ├── Error.hs │ │ │ ├── Pool.hs │ │ │ ├── Safe.hs │ │ │ ├── Unsafe.hs │ │ │ └── Utils.hs │ │ ├── Ptr.hs │ │ ├── Safe.hs │ │ ├── StablePtr.hs │ │ └── Storable.hs │ ├── GHC │ │ ├── Arr.hs │ │ ├── Base.hs │ │ ├── Char.hs │ │ ├── Conc.hs │ │ ├── Conc │ │ │ ├── IO.hs │ │ │ ├── Signal.hs │ │ │ ├── Sync.hs │ │ │ └── Windows.hs │ │ ├── ConsoleHandler.hs │ │ ├── Constants.hs │ │ ├── Desugar.hs │ │ ├── Enum.hs │ │ ├── Environment.hs │ │ ├── Err.hs │ │ ├── Event.hs │ │ ├── Event │ │ │ ├── Arr.hs │ │ │ ├── Array.hs │ │ │ ├── Clock.hsc │ │ │ ├── Control.hs │ │ │ ├── EPoll.hsc │ │ │ ├── IntTable.hs │ │ │ ├── Internal.hs │ │ │ ├── KQueue.hsc │ │ │ ├── Manager.hs │ │ │ ├── PSQ.hs │ │ │ ├── Poll.hsc │ │ │ ├── Thread.hs │ │ │ ├── TimerManager.hs │ │ │ └── Unique.hs │ │ ├── Exception.hs │ │ ├── Exception.hs-boot │ │ ├── ExecutionStack.hs │ │ ├── ExecutionStack │ │ │ └── Internal.hsc │ │ ├── Exts.hs │ │ ├── Fingerprint.hs │ │ ├── Fingerprint.hs-boot │ │ ├── Fingerprint │ │ │ └── Type.hs │ │ ├── Float.hs │ │ ├── Float │ │ │ ├── ConversionUtils.hs │ │ │ └── RealFracMethods.hs │ │ ├── Foreign.hs │ │ ├── ForeignPtr.hs │ │ ├── GHCi.hs │ │ ├── Generics.hs │ │ ├── IO.hs │ │ ├── IO.hs-boot │ │ ├── IO │ │ │ ├── Buffer.hs │ │ │ ├── BufferedIO.hs │ │ │ ├── Device.hs │ │ │ ├── Encoding.hs │ │ │ ├── Encoding.hs-boot │ │ │ ├── Encoding │ │ │ │ ├── CodePage.hs │ │ │ │ ├── CodePage │ │ │ │ │ ├── API.hs │ │ │ │ │ └── Table.hs │ │ │ │ ├── Failure.hs │ │ │ │ ├── Iconv.hs │ │ │ │ ├── Latin1.hs │ │ │ │ ├── Types.hs │ │ │ │ ├── UTF16.hs │ │ │ │ ├── UTF32.hs │ │ │ │ └── UTF8.hs │ │ │ ├── Exception.hs │ │ │ ├── Exception.hs-boot │ │ │ ├── FD.hs │ │ │ ├── Handle.hs │ │ │ ├── Handle.hs-boot │ │ │ ├── Handle │ │ │ │ ├── FD.hs │ │ │ │ ├── FD.hs-boot │ │ │ │ ├── Internals.hs │ │ │ │ ├── Text.hs │ │ │ │ └── Types.hs │ │ │ ├── IOMode.hs │ │ │ └── Unsafe.hs │ │ ├── IOArray.hs │ │ ├── IORef.hs │ │ ├── Int.hs │ │ ├── List.hs │ │ ├── MVar.hs │ │ ├── Natural.hs │ │ ├── Num.hs │ │ ├── OldList.hs │ │ ├── OverloadedLabels.hs │ │ ├── PArr.hs │ │ ├── Pack.hs │ │ ├── Profiling.hs │ │ ├── Ptr.hs │ │ ├── RTS │ │ │ └── Flags.hsc │ │ ├── Read.hs │ │ ├── Real.hs │ │ ├── ST.hs │ │ ├── STRef.hs │ │ ├── Show.hs │ │ ├── Stable.hs │ │ ├── Stack.hs │ │ ├── Stack │ │ │ ├── CCS.hs-boot │ │ │ ├── CCS.hsc │ │ │ └── Types.hs │ │ ├── StaticPtr.hs │ │ ├── Stats.hsc │ │ ├── Storable.hs │ │ ├── TopHandler.hs │ │ ├── TypeLits.hs │ │ ├── Unicode.hs │ │ ├── Weak.hs │ │ ├── Windows.hs │ │ └── Word.hs │ ├── LICENSE │ ├── Numeric.hs │ ├── Numeric │ │ └── Natural.hs │ ├── Prelude.hs │ ├── Setup.hs │ ├── System │ │ ├── CPUTime.hsc │ │ ├── Console │ │ │ └── GetOpt.hs │ │ ├── Environment.hs │ │ ├── Environment │ │ │ └── ExecutablePath.hsc │ │ ├── Exit.hs │ │ ├── IO.hs │ │ ├── IO │ │ │ ├── Error.hs │ │ │ └── Unsafe.hs │ │ ├── Info.hs │ │ ├── Mem.hs │ │ ├── Mem │ │ │ ├── StableName.hs │ │ │ └── Weak.hs │ │ ├── Posix │ │ │ ├── Internals.hs │ │ │ └── Types.hs │ │ └── Timeout.hs │ ├── Text │ │ ├── ParserCombinators │ │ │ ├── ReadP.hs │ │ │ └── ReadPrec.hs │ │ ├── Printf.hs │ │ ├── Read.hs │ │ ├── Read │ │ │ └── Lex.hs │ │ ├── Show.hs │ │ └── Show │ │ │ └── Functions.hs │ ├── Unsafe │ │ └── Coerce.hs │ ├── aclocal.m4 │ ├── base.buildinfo.in │ ├── base.cabal │ ├── cbits │ │ ├── DarwinUtils.c │ │ ├── PrelIOUtils.c │ │ ├── SetEnv.c │ │ ├── WCsubst.c │ │ ├── Win32Utils.c │ │ ├── consUtils.c │ │ ├── iconv.c │ │ ├── inputReady.c │ │ ├── md5.c │ │ ├── primFloat.c │ │ ├── rts.c │ │ └── sysconf.c │ ├── changelog.md │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── include │ │ ├── CTypes.h │ │ ├── EventConfig.h.in │ │ ├── HsBase.h │ │ ├── HsBaseConfig.h.in │ │ ├── WCsubst.h │ │ ├── consUtils.h │ │ ├── ieee-flpt.h │ │ └── md5.h │ └── install-sh ├── base │ ├── Control │ │ ├── Applicative.hs │ │ ├── Arrow.hs │ │ ├── Category.hs │ │ ├── Concurrent.hs │ │ ├── Concurrent │ │ │ ├── Chan.hs │ │ │ ├── MVar.hs │ │ │ ├── QSem.hs │ │ │ └── QSemN.hs │ │ ├── Exception.hs │ │ ├── Exception │ │ │ └── Base.hs │ │ ├── Monad.hs │ │ └── Monad │ │ │ ├── Fail.hs │ │ │ ├── Fix.hs │ │ │ ├── IO │ │ │ └── Class.hs │ │ │ ├── Instances.hs │ │ │ ├── ST.hs │ │ │ ├── ST │ │ │ ├── Imp.hs │ │ │ ├── Lazy.hs │ │ │ ├── Lazy │ │ │ │ ├── Imp.hs │ │ │ │ ├── Safe.hs │ │ │ │ └── Unsafe.hs │ │ │ ├── Safe.hs │ │ │ ├── Strict.hs │ │ │ └── Unsafe.hs │ │ │ └── Zip.hs │ ├── Data │ │ ├── Bifunctor.hs │ │ ├── Bits.hs │ │ ├── Bool.hs │ │ ├── Char.hs │ │ ├── Coerce.hs │ │ ├── Complex.hs │ │ ├── Data.hs │ │ ├── Dynamic.hs │ │ ├── Either.hs │ │ ├── Eq.hs │ │ ├── Fixed.hs │ │ ├── Foldable.hs │ │ ├── Function.hs │ │ ├── Functor.hs │ │ ├── Functor │ │ │ ├── Classes.hs │ │ │ ├── Compose.hs │ │ │ ├── Const.hs │ │ │ ├── Identity.hs │ │ │ ├── Product.hs │ │ │ └── Sum.hs │ │ ├── IORef.hs │ │ ├── Int.hs │ │ ├── Ix.hs │ │ ├── Kind.hs │ │ ├── List.hs │ │ ├── List │ │ │ └── NonEmpty.hs │ │ ├── Maybe.hs │ │ ├── Monoid.hs │ │ ├── OldList.hs │ │ ├── Ord.hs │ │ ├── Proxy.hs │ │ ├── Ratio.hs │ │ ├── STRef.hs │ │ ├── STRef │ │ │ ├── Lazy.hs │ │ │ └── Strict.hs │ │ ├── Semigroup.hs │ │ ├── String.hs │ │ ├── Traversable.hs │ │ ├── Tuple.hs │ │ ├── Type │ │ │ ├── Bool.hs │ │ │ ├── Coercion.hs │ │ │ └── Equality.hs │ │ ├── Typeable.hs │ │ ├── Typeable │ │ │ └── Internal.hs │ │ ├── Unique.hs │ │ ├── Version.hs │ │ ├── Void.hs │ │ └── Word.hs │ ├── Debug │ │ └── Trace.hs │ ├── Foreign.hs │ ├── Foreign │ │ ├── C.hs │ │ ├── C │ │ │ ├── Error.hs │ │ │ ├── String.hs │ │ │ └── Types.hs │ │ ├── Concurrent.hs │ │ ├── ForeignPtr.hs │ │ ├── ForeignPtr │ │ │ ├── Imp.hs │ │ │ ├── Safe.hs │ │ │ └── Unsafe.hs │ │ ├── Marshal.hs │ │ ├── Marshal │ │ │ ├── Alloc.hs │ │ │ ├── Array.hs │ │ │ ├── Error.hs │ │ │ ├── Pool.hs │ │ │ ├── Safe.hs │ │ │ ├── Unsafe.hs │ │ │ └── Utils.hs │ │ ├── Ptr.hs │ │ ├── Safe.hs │ │ ├── StablePtr.hs │ │ └── Storable.hs │ ├── GHC │ │ ├── Arr.hs │ │ ├── Base.hs │ │ ├── Char.hs │ │ ├── Conc.hs │ │ ├── Conc │ │ │ ├── IO.hs │ │ │ ├── Signal.hs │ │ │ ├── Sync.hs │ │ │ └── Windows.hs │ │ ├── ConsoleHandler.hs │ │ ├── Constants.hs │ │ ├── Desugar.hs │ │ ├── Enum.hs │ │ ├── Environment.hs │ │ ├── Err.hs │ │ ├── Event.hs │ │ ├── Event │ │ │ ├── Arr.hs │ │ │ ├── Array.hs │ │ │ ├── Clock.hsc │ │ │ ├── Control.hs │ │ │ ├── EPoll.hsc │ │ │ ├── IntTable.hs │ │ │ ├── Internal.hs │ │ │ ├── KQueue.hsc │ │ │ ├── Manager.hs │ │ │ ├── PSQ.hs │ │ │ ├── Poll.hsc │ │ │ ├── Thread.hs │ │ │ ├── TimerManager.hs │ │ │ └── Unique.hs │ │ ├── Exception.hs │ │ ├── Exception.hs-boot │ │ ├── ExecutionStack.hs │ │ ├── ExecutionStack │ │ │ └── Internal.hsc │ │ ├── Exts.hs │ │ ├── Fingerprint.hs │ │ ├── Fingerprint.hs-boot │ │ ├── Fingerprint │ │ │ └── Type.hs │ │ ├── Float.hs │ │ ├── Float │ │ │ ├── ConversionUtils.hs │ │ │ └── RealFracMethods.hs │ │ ├── Foreign.hs │ │ ├── ForeignPtr.hs │ │ ├── GHCi.hs │ │ ├── Generics.hs │ │ ├── IO.hs │ │ ├── IO.hs-boot │ │ ├── IO │ │ │ ├── Buffer.hs │ │ │ ├── BufferedIO.hs │ │ │ ├── Device.hs │ │ │ ├── Encoding.hs │ │ │ ├── Encoding.hs-boot │ │ │ ├── Encoding │ │ │ │ ├── CodePage.hs │ │ │ │ ├── CodePage │ │ │ │ │ ├── API.hs │ │ │ │ │ └── Table.hs │ │ │ │ ├── Failure.hs │ │ │ │ ├── Iconv.hs │ │ │ │ ├── Latin1.hs │ │ │ │ ├── Types.hs │ │ │ │ ├── UTF16.hs │ │ │ │ ├── UTF32.hs │ │ │ │ └── UTF8.hs │ │ │ ├── Exception.hs │ │ │ ├── Exception.hs-boot │ │ │ ├── FD.hs │ │ │ ├── Handle.hs │ │ │ ├── Handle.hs-boot │ │ │ ├── Handle │ │ │ │ ├── FD.hs │ │ │ │ ├── FD.hs-boot │ │ │ │ ├── Internals.hs │ │ │ │ ├── Text.hs │ │ │ │ └── Types.hs │ │ │ ├── IOMode.hs │ │ │ └── Unsafe.hs │ │ ├── IOArray.hs │ │ ├── IORef.hs │ │ ├── Int.hs │ │ ├── List.hs │ │ ├── MVar.hs │ │ ├── Natural.hs │ │ ├── Num.hs │ │ ├── OldList.hs │ │ ├── OverloadedLabels.hs │ │ ├── PArr.hs │ │ ├── Pack.hs │ │ ├── Profiling.hs │ │ ├── Ptr.hs │ │ ├── RTS │ │ │ └── Flags.hsc │ │ ├── Read.hs │ │ ├── Real.hs │ │ ├── ST.hs │ │ ├── STRef.hs │ │ ├── Show.hs │ │ ├── Stable.hs │ │ ├── Stack.hs │ │ ├── Stack │ │ │ ├── CCS.hs-boot │ │ │ ├── CCS.hsc │ │ │ └── Types.hs │ │ ├── StaticPtr.hs │ │ ├── Stats.hsc │ │ ├── Storable.hs │ │ ├── TopHandler.hs │ │ ├── TypeLits.hs │ │ ├── Unicode.hs │ │ ├── Weak.hs │ │ ├── Windows.hs │ │ └── Word.hs │ ├── LICENSE │ ├── Numeric.hs │ ├── Numeric │ │ └── Natural.hs │ ├── Prelude.hs │ ├── Setup.hs │ ├── System │ │ ├── CPUTime.hsc │ │ ├── Console │ │ │ └── GetOpt.hs │ │ ├── Environment.hs │ │ ├── Environment │ │ │ └── ExecutablePath.hsc │ │ ├── Exit.hs │ │ ├── IO.hs │ │ ├── IO │ │ │ ├── Error.hs │ │ │ └── Unsafe.hs │ │ ├── Info.hs │ │ ├── Mem.hs │ │ ├── Mem │ │ │ ├── StableName.hs │ │ │ └── Weak.hs │ │ ├── Posix │ │ │ ├── Internals.hs │ │ │ ├── Internals.hs.orig │ │ │ ├── Internals.hs.rej │ │ │ ├── Types.hs │ │ │ └── clean-ghcjs1.patch │ │ └── Timeout.hs │ ├── Text │ │ ├── ParserCombinators │ │ │ ├── ReadP.hs │ │ │ └── ReadPrec.hs │ │ ├── Printf.hs │ │ ├── Read.hs │ │ ├── Read │ │ │ └── Lex.hs │ │ ├── Show.hs │ │ └── Show │ │ │ └── Functions.hs │ ├── Unsafe │ │ └── Coerce.hs │ ├── aclocal.m4 │ ├── base.buildinfo.in │ ├── base.cabal │ ├── cbits │ │ ├── DarwinUtils.c │ │ ├── PrelIOUtils.c │ │ ├── README.Unicode │ │ ├── SetEnv.c │ │ ├── WCsubst.c │ │ ├── Win32Utils.c │ │ ├── consUtils.c │ │ ├── iconv.c │ │ ├── inputReady.c │ │ ├── md5.c │ │ ├── primFloat.c │ │ ├── rts.c │ │ ├── sysconf.c │ │ └── ubconfc │ ├── changelog.md │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── include │ │ ├── CTypes.h │ │ ├── EventConfig.h.in │ │ ├── HsBase.h │ │ ├── HsBaseConfig.h.in │ │ ├── HsEvent.h │ │ ├── WCsubst.h │ │ ├── consUtils.h │ │ ├── ieee-flpt.h │ │ └── md5.h │ └── install-sh ├── boot.yaml ├── cabal │ ├── .arcconfig │ ├── .gitignore │ ├── .travis.yml │ ├── Cabal │ │ ├── Cabal.cabal │ │ ├── Distribution │ │ │ ├── Compat │ │ │ │ ├── Binary.hs │ │ │ │ ├── Binary │ │ │ │ │ ├── Class.hs │ │ │ │ │ └── Generic.hs │ │ │ │ ├── CopyFile.hs │ │ │ │ ├── CreatePipe.hs │ │ │ │ ├── Environment.hs │ │ │ │ ├── Exception.hs │ │ │ │ ├── GetShortPathName.hs │ │ │ │ ├── Internal │ │ │ │ │ └── TempFile.hs │ │ │ │ ├── MonadFail.hs │ │ │ │ ├── ReadP.hs │ │ │ │ └── Semigroup.hs │ │ │ ├── Compiler.hs │ │ │ ├── GetOpt.hs │ │ │ ├── InstalledPackageInfo.hs │ │ │ ├── Lex.hs │ │ │ ├── License.hs │ │ │ ├── Make.hs │ │ │ ├── ModuleName.hs │ │ │ ├── Package.hs │ │ │ ├── PackageDescription.hs │ │ │ ├── PackageDescription │ │ │ │ ├── Check.hs │ │ │ │ ├── Configuration.hs │ │ │ │ ├── Parse.hs │ │ │ │ ├── PrettyPrint.hs │ │ │ │ └── Utils.hs │ │ │ ├── ParseUtils.hs │ │ │ ├── ReadE.hs │ │ │ ├── Simple.hs │ │ │ ├── Simple │ │ │ │ ├── Bench.hs │ │ │ │ ├── Build.hs │ │ │ │ ├── Build │ │ │ │ │ ├── Macros.hs │ │ │ │ │ └── PathsModule.hs │ │ │ │ ├── BuildPaths.hs │ │ │ │ ├── BuildTarget.hs │ │ │ │ ├── CCompiler.hs │ │ │ │ ├── Command.hs │ │ │ │ ├── Compiler.hs │ │ │ │ ├── Configure.hs │ │ │ │ ├── GHC.hs │ │ │ │ ├── GHC │ │ │ │ │ ├── IPI642.hs │ │ │ │ │ ├── IPIConvert.hs │ │ │ │ │ ├── ImplInfo.hs │ │ │ │ │ └── Internal.hs │ │ │ │ ├── GHCJS.hs │ │ │ │ ├── Haddock.hs │ │ │ │ ├── HaskellSuite.hs │ │ │ │ ├── Hpc.hs │ │ │ │ ├── Install.hs │ │ │ │ ├── InstallDirs.hs │ │ │ │ ├── JHC.hs │ │ │ │ ├── LHC.hs │ │ │ │ ├── LocalBuildInfo.hs │ │ │ │ ├── PackageIndex.hs │ │ │ │ ├── PreProcess.hs │ │ │ │ ├── PreProcess │ │ │ │ │ └── Unlit.hs │ │ │ │ ├── Program.hs │ │ │ │ ├── Program │ │ │ │ │ ├── Ar.hs │ │ │ │ │ ├── Builtin.hs │ │ │ │ │ ├── Db.hs │ │ │ │ │ ├── Find.hs │ │ │ │ │ ├── GHC.hs │ │ │ │ │ ├── HcPkg.hs │ │ │ │ │ ├── Hpc.hs │ │ │ │ │ ├── Internal.hs │ │ │ │ │ ├── Ld.hs │ │ │ │ │ ├── Run.hs │ │ │ │ │ ├── Script.hs │ │ │ │ │ ├── Strip.hs │ │ │ │ │ └── Types.hs │ │ │ │ ├── Register.hs │ │ │ │ ├── Setup.hs │ │ │ │ ├── SrcDist.hs │ │ │ │ ├── Test.hs │ │ │ │ ├── Test │ │ │ │ │ ├── ExeV10.hs │ │ │ │ │ ├── LibV09.hs │ │ │ │ │ └── Log.hs │ │ │ │ ├── UHC.hs │ │ │ │ ├── UserHooks.hs │ │ │ │ └── Utils.hs │ │ │ ├── System.hs │ │ │ ├── TestSuite.hs │ │ │ ├── Text.hs │ │ │ ├── Utils │ │ │ │ └── NubList.hs │ │ │ ├── Verbosity.hs │ │ │ └── Version.hs │ │ ├── LICENSE │ │ ├── Language │ │ │ └── Haskell │ │ │ │ └── Extension.hs │ │ ├── Makefile │ │ ├── README.md │ │ ├── Setup.hs │ │ ├── changelog │ │ ├── doc │ │ │ ├── Cabal.css │ │ │ ├── developing-packages.markdown │ │ │ ├── index.markdown │ │ │ ├── installing-packages.markdown │ │ │ └── misc.markdown │ │ ├── misc │ │ │ ├── gen-extra-source-files.sh │ │ │ └── travis-diff-files.sh │ │ ├── prologue.txt │ │ └── tests │ │ │ ├── PackageTests.hs │ │ │ ├── PackageTests │ │ │ ├── .gitignore │ │ │ ├── AllowNewer │ │ │ │ ├── AllowNewer.cabal │ │ │ │ ├── benchmarks │ │ │ │ │ └── Bench.hs │ │ │ │ ├── src │ │ │ │ │ └── Foo.hs │ │ │ │ └── tests │ │ │ │ │ └── Test.hs │ │ │ ├── BenchmarkExeV10 │ │ │ │ ├── Foo.hs │ │ │ │ ├── benchmarks │ │ │ │ │ └── bench-Foo.hs │ │ │ │ └── my.cabal │ │ │ ├── BenchmarkOptions │ │ │ │ ├── BenchmarkOptions.cabal │ │ │ │ └── test-BenchmarkOptions.hs │ │ │ ├── BenchmarkStanza │ │ │ │ ├── Check.hs │ │ │ │ └── my.cabal │ │ │ ├── BuildDeps │ │ │ │ ├── GlobalBuildDepsNotAdditive1 │ │ │ │ │ ├── Check.hs │ │ │ │ │ ├── GlobalBuildDepsNotAdditive1.cabal │ │ │ │ │ └── MyLibrary.hs │ │ │ │ ├── GlobalBuildDepsNotAdditive2 │ │ │ │ │ ├── Check.hs │ │ │ │ │ ├── GlobalBuildDepsNotAdditive2.cabal │ │ │ │ │ └── lemon.hs │ │ │ │ ├── InternalLibrary0 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ └── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ ├── InternalLibrary1 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ └── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ ├── InternalLibrary2 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ ├── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ │ └── to-install │ │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ │ └── my.cabal │ │ │ │ ├── InternalLibrary3 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ ├── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ │ └── to-install │ │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ │ └── my.cabal │ │ │ │ ├── InternalLibrary4 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ ├── programs │ │ │ │ │ │ └── lemon.hs │ │ │ │ │ └── to-install │ │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ │ └── my.cabal │ │ │ │ ├── SameDepsAllRound │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── SameDepsAllRound.cabal │ │ │ │ │ ├── lemon.hs │ │ │ │ │ └── pineapple.hs │ │ │ │ ├── TargetSpecificDeps1 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── lemon.hs │ │ │ │ │ └── my.cabal │ │ │ │ ├── TargetSpecificDeps2 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── lemon.hs │ │ │ │ │ └── my.cabal │ │ │ │ └── TargetSpecificDeps3 │ │ │ │ │ ├── MyLibrary.hs │ │ │ │ │ ├── lemon.hs │ │ │ │ │ └── my.cabal │ │ │ ├── BuildTargetErrors │ │ │ │ ├── BuildTargetErrors.cabal │ │ │ │ └── Main.hs │ │ │ ├── BuildTestSuiteDetailedV09 │ │ │ │ └── Dummy2.hs │ │ │ ├── BuildableField │ │ │ │ ├── BuildableField.cabal │ │ │ │ └── Main.hs │ │ │ ├── CMain │ │ │ │ ├── Bar.hs │ │ │ │ ├── foo.c │ │ │ │ └── my.cabal │ │ │ ├── DeterministicAr │ │ │ │ ├── Check.hs │ │ │ │ ├── Lib.hs │ │ │ │ └── my.cabal │ │ │ ├── DuplicateModuleName │ │ │ │ ├── DuplicateModuleName.cabal │ │ │ │ ├── src │ │ │ │ │ └── Foo.hs │ │ │ │ ├── tests │ │ │ │ │ └── Foo.hs │ │ │ │ └── tests2 │ │ │ │ │ └── Foo.hs │ │ │ ├── EmptyLib │ │ │ │ └── empty │ │ │ │ │ └── empty.cabal │ │ │ ├── GhcPkgGuess │ │ │ │ ├── SameDirectory │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ ├── ghc │ │ │ │ │ └── ghc-pkg │ │ │ │ ├── SameDirectoryGhcVersion │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ ├── ghc-7.10 │ │ │ │ │ └── ghc-pkg-ghc-7.10 │ │ │ │ ├── SameDirectoryVersion │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ ├── ghc-7.10 │ │ │ │ │ └── ghc-pkg-7.10 │ │ │ │ ├── Symlink │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ └── bin │ │ │ │ │ │ ├── ghc │ │ │ │ │ │ └── ghc-pkg │ │ │ │ ├── SymlinkGhcVersion │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ └── bin │ │ │ │ │ │ ├── ghc-7.10 │ │ │ │ │ │ └── ghc-pkg-7.10 │ │ │ │ └── SymlinkVersion │ │ │ │ │ ├── SameDirectory.cabal │ │ │ │ │ └── bin │ │ │ │ │ ├── ghc-7.10 │ │ │ │ │ └── ghc-pkg-ghc-7.10 │ │ │ ├── Haddock │ │ │ │ ├── CPP.hs │ │ │ │ ├── Literate.lhs │ │ │ │ ├── NoCPP.hs │ │ │ │ ├── Simple.hs │ │ │ │ └── my.cabal │ │ │ ├── HaddockNewline │ │ │ │ ├── A.hs │ │ │ │ ├── ChangeLog.md │ │ │ │ ├── HaddockNewline.cabal │ │ │ │ ├── LICENSE │ │ │ │ └── Setup.hs │ │ │ ├── Options.hs │ │ │ ├── OrderFlags │ │ │ │ ├── Foo.hs │ │ │ │ └── my.cabal │ │ │ ├── PackageTester.hs │ │ │ ├── PathsModule │ │ │ │ ├── Executable │ │ │ │ │ ├── Main.hs │ │ │ │ │ └── my.cabal │ │ │ │ └── Library │ │ │ │ │ └── my.cabal │ │ │ ├── PreProcess │ │ │ │ ├── Foo.hsc │ │ │ │ ├── Main.hs │ │ │ │ └── my.cabal │ │ │ ├── PreProcessExtraSources │ │ │ │ ├── Foo.hsc │ │ │ │ ├── Main.hs │ │ │ │ └── my.cabal │ │ │ ├── ReexportedModules │ │ │ │ ├── LICENSE │ │ │ │ └── ReexportedModules.cabal │ │ │ ├── TemplateHaskell │ │ │ │ ├── dynamic │ │ │ │ │ ├── Exe.hs │ │ │ │ │ ├── Lib.hs │ │ │ │ │ ├── TH.hs │ │ │ │ │ └── my.cabal │ │ │ │ ├── profiling │ │ │ │ │ ├── Exe.hs │ │ │ │ │ ├── Lib.hs │ │ │ │ │ ├── TH.hs │ │ │ │ │ └── my.cabal │ │ │ │ └── vanilla │ │ │ │ │ ├── Exe.hs │ │ │ │ │ ├── Lib.hs │ │ │ │ │ ├── TH.hs │ │ │ │ │ └── my.cabal │ │ │ ├── TestNameCollision │ │ │ │ ├── child │ │ │ │ │ ├── Child.hs │ │ │ │ │ ├── child.cabal │ │ │ │ │ └── tests │ │ │ │ │ │ └── Test.hs │ │ │ │ └── parent │ │ │ │ │ ├── Parent.hs │ │ │ │ │ └── parent.cabal │ │ │ ├── TestOptions │ │ │ │ ├── TestOptions.cabal │ │ │ │ └── test-TestOptions.hs │ │ │ ├── TestStanza │ │ │ │ ├── Check.hs │ │ │ │ └── my.cabal │ │ │ ├── TestSuiteTests │ │ │ │ ├── ExeV10 │ │ │ │ │ ├── Check.hs │ │ │ │ │ ├── Foo.hs │ │ │ │ │ ├── my.cabal │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-Foo.hs │ │ │ │ │ │ └── test-Short.hs │ │ │ │ └── LibV09 │ │ │ │ │ ├── Lib.hs │ │ │ │ │ ├── LibV09.cabal │ │ │ │ │ └── tests │ │ │ │ │ └── Deadlock.hs │ │ │ ├── Tests.hs │ │ │ ├── UniqueIPID │ │ │ │ ├── P1 │ │ │ │ │ ├── M.hs │ │ │ │ │ └── my.cabal │ │ │ │ └── P2 │ │ │ │ │ ├── M.hs │ │ │ │ │ └── my.cabal │ │ │ └── multInst │ │ │ │ └── my.cabal │ │ │ ├── README.md │ │ │ ├── Setup.hs │ │ │ ├── Test │ │ │ ├── Laws.hs │ │ │ └── QuickCheck │ │ │ │ └── Utils.hs │ │ │ ├── UnitTests.hs │ │ │ ├── UnitTests │ │ │ └── Distribution │ │ │ │ ├── Compat │ │ │ │ ├── CreatePipe.hs │ │ │ │ └── ReadP.hs │ │ │ │ ├── Simple │ │ │ │ ├── Program │ │ │ │ │ └── Internal.hs │ │ │ │ └── Utils.hs │ │ │ │ ├── System.hs │ │ │ │ ├── Utils │ │ │ │ └── NubList.hs │ │ │ │ └── Version.hs │ │ │ ├── hackage │ │ │ ├── check.sh │ │ │ ├── download.sh │ │ │ └── unpack.sh │ │ │ └── misc │ │ │ └── ghc-supported-languages.hs │ ├── HACKING.md │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── cabal-install │ │ ├── .ghci │ │ ├── Distribution │ │ │ └── Client │ │ │ │ ├── BuildReports │ │ │ │ ├── Anonymous.hs │ │ │ │ ├── Storage.hs │ │ │ │ ├── Types.hs │ │ │ │ └── Upload.hs │ │ │ │ ├── BuildTarget.hs │ │ │ │ ├── Check.hs │ │ │ │ ├── CmdBuild.hs │ │ │ │ ├── CmdConfigure.hs │ │ │ │ ├── CmdRepl.hs │ │ │ │ ├── Compat │ │ │ │ ├── ExecutablePath.hs │ │ │ │ ├── FilePerms.hs │ │ │ │ ├── Process.hs │ │ │ │ ├── Semaphore.hs │ │ │ │ └── Time.hs │ │ │ │ ├── ComponentDeps.hs │ │ │ │ ├── Config.hs │ │ │ │ ├── Configure.hs │ │ │ │ ├── Dependency.hs │ │ │ │ ├── Dependency │ │ │ │ ├── Modular.hs │ │ │ │ ├── Modular │ │ │ │ │ ├── Assignment.hs │ │ │ │ │ ├── Builder.hs │ │ │ │ │ ├── Configured.hs │ │ │ │ │ ├── ConfiguredConversion.hs │ │ │ │ │ ├── ConflictSet.hs │ │ │ │ │ ├── Cycles.hs │ │ │ │ │ ├── Dependency.hs │ │ │ │ │ ├── Explore.hs │ │ │ │ │ ├── Flag.hs │ │ │ │ │ ├── Index.hs │ │ │ │ │ ├── IndexConversion.hs │ │ │ │ │ ├── Linking.hs │ │ │ │ │ ├── Log.hs │ │ │ │ │ ├── Message.hs │ │ │ │ │ ├── PSQ.hs │ │ │ │ │ ├── Package.hs │ │ │ │ │ ├── Preference.hs │ │ │ │ │ ├── Solver.hs │ │ │ │ │ ├── Tree.hs │ │ │ │ │ ├── Validate.hs │ │ │ │ │ ├── Var.hs │ │ │ │ │ └── Version.hs │ │ │ │ ├── TopDown.hs │ │ │ │ ├── TopDown │ │ │ │ │ ├── Constraints.hs │ │ │ │ │ └── Types.hs │ │ │ │ └── Types.hs │ │ │ │ ├── DistDirLayout.hs │ │ │ │ ├── Exec.hs │ │ │ │ ├── Fetch.hs │ │ │ │ ├── FetchUtils.hs │ │ │ │ ├── FileMonitor.hs │ │ │ │ ├── Freeze.hs │ │ │ │ ├── GZipUtils.hs │ │ │ │ ├── GenBounds.hs │ │ │ │ ├── Get.hs │ │ │ │ ├── Glob.hs │ │ │ │ ├── GlobalFlags.hs │ │ │ │ ├── Haddock.hs │ │ │ │ ├── HttpUtils.hs │ │ │ │ ├── IndexUtils.hs │ │ │ │ ├── Init.hs │ │ │ │ ├── Init │ │ │ │ ├── Heuristics.hs │ │ │ │ ├── Licenses.hs │ │ │ │ └── Types.hs │ │ │ │ ├── Install.hs │ │ │ │ ├── InstallPlan.hs │ │ │ │ ├── InstallSymlink.hs │ │ │ │ ├── JobControl.hs │ │ │ │ ├── List.hs │ │ │ │ ├── Manpage.hs │ │ │ │ ├── PackageHash.hs │ │ │ │ ├── PackageIndex.hs │ │ │ │ ├── PackageUtils.hs │ │ │ │ ├── ParseUtils.hs │ │ │ │ ├── PkgConfigDb.hs │ │ │ │ ├── PlanIndex.hs │ │ │ │ ├── ProjectBuilding.hs │ │ │ │ ├── ProjectConfig.hs │ │ │ │ ├── ProjectConfig │ │ │ │ ├── Legacy.hs │ │ │ │ └── Types.hs │ │ │ │ ├── ProjectOrchestration.hs │ │ │ │ ├── ProjectPlanOutput.hs │ │ │ │ ├── ProjectPlanning.hs │ │ │ │ ├── ProjectPlanning │ │ │ │ └── Types.hs │ │ │ │ ├── RebuildMonad.hs │ │ │ │ ├── Run.hs │ │ │ │ ├── Sandbox.hs │ │ │ │ ├── Sandbox │ │ │ │ ├── Index.hs │ │ │ │ ├── PackageEnvironment.hs │ │ │ │ ├── Timestamp.hs │ │ │ │ └── Types.hs │ │ │ │ ├── Security │ │ │ │ └── HTTP.hs │ │ │ │ ├── Setup.hs │ │ │ │ ├── SetupWrapper.hs │ │ │ │ ├── SrcDist.hs │ │ │ │ ├── Tar.hs │ │ │ │ ├── Targets.hs │ │ │ │ ├── Types.hs │ │ │ │ ├── Update.hs │ │ │ │ ├── Upload.hs │ │ │ │ ├── Utils.hs │ │ │ │ ├── Utils │ │ │ │ ├── Json.hs │ │ │ │ └── LabeledGraph.hs │ │ │ │ ├── Win32SelfUpgrade.hs │ │ │ │ └── World.hs │ │ ├── LICENSE │ │ ├── Main.hs │ │ ├── README.md │ │ ├── Setup.hs │ │ ├── bash-completion │ │ │ └── cabal │ │ ├── bootstrap.sh │ │ ├── cabal-install.cabal │ │ ├── cbits │ │ │ └── getnumcores.c │ │ └── changelog │ ├── cabal.project │ ├── ghc-packages │ ├── setup-dev.sh │ └── stack.yaml ├── ghc-boot-th │ ├── GHC │ │ ├── LanguageExtensions │ │ │ └── Type.hs │ │ └── Lexeme.hs │ ├── GNUmakefile │ ├── LICENSE │ ├── changelog.md │ ├── ghc-boot-th.cabal │ ├── ghc-boot-th.cabal.in │ └── ghc.mk ├── ghc-boot │ ├── GHC │ │ ├── LanguageExtensions.hs │ │ ├── LanguageExtensions │ │ │ └── Type.hs │ │ ├── Lexeme.hs │ │ ├── PackageDb.hs │ │ └── Serialized.hs │ ├── GNUmakefile │ ├── LICENSE │ ├── changelog.md │ ├── ghc-boot.cabal │ ├── ghc-boot.cabal.in │ └── ghc.mk ├── ghc │ ├── LICENSE │ ├── ghc.cabal │ ├── main │ │ └── Plugins.hs │ └── stage2 │ │ └── empty.txt ├── ghci │ ├── GHCi │ │ ├── BreakArray.hs │ │ ├── CreateBCO.hs │ │ ├── FFI.hsc │ │ ├── InfoTable.hsc │ │ ├── Message.hs │ │ ├── ObjLink.hs │ │ ├── RemoteTypes.hs │ │ ├── ResolvedBCO.hs │ │ ├── Run.hs │ │ ├── Signals.hs │ │ ├── TH.hs │ │ └── TH │ │ │ └── Binary.hs │ ├── GNUmakefile │ ├── LICENSE │ ├── SizedSeq.hs │ ├── changelog.md │ ├── ghc.mk │ ├── ghci.cabal │ └── ghci.cabal.in ├── ghcjs-base.cabal ├── thrunner.js ├── unix-bad │ ├── LICENSE │ ├── Setup.hs │ ├── System │ │ ├── Posix.hs │ │ └── Posix │ │ │ ├── ByteString.hs │ │ │ ├── ByteString │ │ │ └── FilePath.hsc │ │ │ ├── Directory.hsc │ │ │ ├── Directory │ │ │ ├── ByteString.hsc │ │ │ └── Common.hsc │ │ │ ├── DynamicLinker.hsc │ │ │ ├── DynamicLinker │ │ │ ├── ByteString.hsc │ │ │ ├── Common.hsc │ │ │ ├── Module.hsc │ │ │ ├── Module │ │ │ │ └── ByteString.hsc │ │ │ └── Prim.hsc │ │ │ ├── Env.hsc │ │ │ ├── Env │ │ │ └── ByteString.hsc │ │ │ ├── Error.hs │ │ │ ├── Fcntl.hsc │ │ │ ├── Files.hsc │ │ │ ├── Files │ │ │ ├── ByteString.hsc │ │ │ └── Common.hsc │ │ │ ├── IO.hsc │ │ │ ├── IO │ │ │ ├── ByteString.hsc │ │ │ └── Common.hsc │ │ │ ├── Process.hsc │ │ │ ├── Process │ │ │ ├── ByteString.hsc │ │ │ ├── Common.hsc │ │ │ └── Internals.hs │ │ │ ├── Resource.hsc │ │ │ ├── Semaphore.hsc │ │ │ ├── SharedMem.hsc │ │ │ ├── Signals.hsc │ │ │ ├── Signals │ │ │ └── Exts.hsc │ │ │ ├── Temp.hsc │ │ │ ├── Temp │ │ │ └── ByteString.hsc │ │ │ ├── Terminal.hsc │ │ │ ├── Terminal │ │ │ ├── ByteString.hsc │ │ │ └── Common.hsc │ │ │ ├── Time.hs │ │ │ ├── Unistd.hsc │ │ │ └── User.hsc │ ├── cbits │ │ ├── HsUnix.c │ │ └── execvpe.c │ ├── changelog.md │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── include │ │ ├── HsUnix.h │ │ ├── HsUnixConfig.h.in │ │ └── execvpe.h │ ├── install-sh │ ├── unix.buildinfo.in │ └── unix.cabal └── unix │ ├── LICENSE │ ├── Setup.hs │ ├── System │ ├── Posix.hs │ └── Posix │ │ ├── ByteString.hs │ │ ├── ByteString │ │ └── FilePath.hsc │ │ ├── Directory.hsc │ │ ├── Directory │ │ ├── ByteString.hsc │ │ └── Common.hsc │ │ ├── DynamicLinker.hsc │ │ ├── DynamicLinker │ │ ├── ByteString.hsc │ │ ├── Common.hsc │ │ ├── Module.hsc │ │ ├── Module │ │ │ └── ByteString.hsc │ │ └── Prim.hsc │ │ ├── Env.hsc │ │ ├── Env │ │ └── ByteString.hsc │ │ ├── Error.hs │ │ ├── Fcntl.hsc │ │ ├── Files.hsc │ │ ├── Files │ │ ├── ByteString.hsc │ │ └── Common.hsc │ │ ├── IO.hsc │ │ ├── IO │ │ ├── ByteString.hsc │ │ └── Common.hsc │ │ ├── Process.hsc │ │ ├── Process │ │ ├── ByteString.hsc │ │ ├── Common.hsc │ │ └── Internals.hs │ │ ├── Resource.hsc │ │ ├── Semaphore.hsc │ │ ├── SharedMem.hsc │ │ ├── Signals.hsc │ │ ├── Signals │ │ └── Exts.hsc │ │ ├── Temp.hsc │ │ ├── Temp │ │ └── ByteString.hsc │ │ ├── Terminal.hsc │ │ ├── Terminal │ │ ├── ByteString.hsc │ │ └── Common.hsc │ │ ├── Time.hs │ │ ├── Unistd.hsc │ │ └── User.hsc │ ├── aclocal.m4 │ ├── cbits │ ├── HsUnix.c │ └── execvpe.c │ ├── changelog.md │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── include │ ├── HsUnix.h │ ├── HsUnixConfig.h.in │ └── execvpe.h │ ├── install-sh │ ├── unix.buildinfo.in │ └── unix.cabal ├── spec-nightly ├── boot.yaml └── ghcjs-base.cabal ├── src └── Main.hs └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /archive/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/PrepGhcJS/.spot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/PrepGhcJS/Cabal/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/lib/PrepGhcJS/Cabal/Utils.hs -------------------------------------------------------------------------------- /lib/PrepGhcJS/Network/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/lib/PrepGhcJS/Network/Utils.hs -------------------------------------------------------------------------------- /lib/PrepGhcJS/Shell/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/lib/PrepGhcJS/Shell/Utils.hs -------------------------------------------------------------------------------- /lib/PrepGhcJS/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/lib/PrepGhcJS/Types.hs -------------------------------------------------------------------------------- /lib/PrepGhcJS/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/lib/PrepGhcJS/Utils.hs -------------------------------------------------------------------------------- /prepare-ghcjs.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/prepare-ghcjs.cabal -------------------------------------------------------------------------------- /spec-lts/boot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/boot.yaml -------------------------------------------------------------------------------- /spec-lts/cabal/.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/.arcconfig -------------------------------------------------------------------------------- /spec-lts/cabal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/.gitignore -------------------------------------------------------------------------------- /spec-lts/cabal/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/.travis.yml -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Cabal.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Cabal.cabal -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Compiler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Compiler.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/GetOpt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/GetOpt.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Lex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Lex.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/License.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/License.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Make.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Make.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/ModuleName.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/ModuleName.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Package.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Package.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/ParseUtils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/ParseUtils.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/ReadE.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/ReadE.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Simple.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Simple/GHC.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Simple/GHC.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Simple/Hpc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Simple/Hpc.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Simple/JHC.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Simple/JHC.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Simple/LHC.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Simple/LHC.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Simple/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Simple/Test.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Simple/UHC.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Simple/UHC.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/System.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/System.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/TestSuite.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/TestSuite.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Text.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Verbosity.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Verbosity.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Distribution/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Distribution/Version.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/LICENSE -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Makefile -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/README.md -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/Setup.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/changelog -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/doc/Cabal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/doc/Cabal.css -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/doc/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/doc/index.markdown -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/doc/misc.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/doc/misc.markdown -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/misc/travis-diff-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/misc/travis-diff-files.sh -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/prologue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/prologue.txt -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/tests/PackageTests.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/.gitignore: -------------------------------------------------------------------------------- 1 | test-log.txt 2 | Setup 3 | /TestSuiteExeV10/dist-* 4 | tmp.package.conf 5 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/BuildTargetErrors/Main.hs: -------------------------------------------------------------------------------- 1 | main = return () 2 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/HaddockNewline/A.hs: -------------------------------------------------------------------------------- 1 | module A where 2 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/HaddockNewline/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/PreProcess/Foo.hsc: -------------------------------------------------------------------------------- 1 | module Foo where 2 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/ReexportedModules/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/TemplateHaskell/dynamic/TH.hs: -------------------------------------------------------------------------------- 1 | {-# LANGUAGE TemplateHaskell #-} 2 | module TH where 3 | 4 | splice = [| () |] 5 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/TestNameCollision/child/Child.hs: -------------------------------------------------------------------------------- 1 | module Child where 2 | import Parent 3 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/TestNameCollision/parent/Parent.hs: -------------------------------------------------------------------------------- 1 | module Parent where 2 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/UniqueIPID/P1/M.hs: -------------------------------------------------------------------------------- 1 | module M(m) where 2 | 3 | m = print "1" 4 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/PackageTests/UniqueIPID/P2/M.hs: -------------------------------------------------------------------------------- 1 | module M(m) where 2 | 3 | m = print "2" 4 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/tests/README.md -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | 4 | -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/Test/Laws.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/tests/Test/Laws.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/UnitTests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/tests/UnitTests.hs -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/hackage/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/tests/hackage/check.sh -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/hackage/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/tests/hackage/download.sh -------------------------------------------------------------------------------- /spec-lts/cabal/Cabal/tests/hackage/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/Cabal/tests/hackage/unpack.sh -------------------------------------------------------------------------------- /spec-lts/cabal/HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/HACKING.md -------------------------------------------------------------------------------- /spec-lts/cabal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/LICENSE -------------------------------------------------------------------------------- /spec-lts/cabal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/README.md -------------------------------------------------------------------------------- /spec-lts/cabal/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/appveyor.yml -------------------------------------------------------------------------------- /spec-lts/cabal/cabal-install/.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/cabal-install/.ghci -------------------------------------------------------------------------------- /spec-lts/cabal/cabal-install/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/cabal-install/LICENSE -------------------------------------------------------------------------------- /spec-lts/cabal/cabal-install/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/cabal-install/Main.hs -------------------------------------------------------------------------------- /spec-lts/cabal/cabal-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/cabal-install/README.md -------------------------------------------------------------------------------- /spec-lts/cabal/cabal-install/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/cabal-install/Setup.hs -------------------------------------------------------------------------------- /spec-lts/cabal/cabal-install/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/cabal-install/bootstrap.sh -------------------------------------------------------------------------------- /spec-lts/cabal/cabal-install/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/cabal-install/changelog -------------------------------------------------------------------------------- /spec-lts/cabal/cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/cabal.project -------------------------------------------------------------------------------- /spec-lts/cabal/ghc-packages: -------------------------------------------------------------------------------- 1 | Cabal 2 | 3 | -------------------------------------------------------------------------------- /spec-lts/cabal/setup-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/setup-dev.sh -------------------------------------------------------------------------------- /spec-lts/cabal/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/cabal/stack.yaml -------------------------------------------------------------------------------- /spec-lts/ghcjs-base.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/ghcjs-base.cabal -------------------------------------------------------------------------------- /spec-lts/thrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts/thrunner.js -------------------------------------------------------------------------------- /spec-lts6/boot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts6/boot.yaml -------------------------------------------------------------------------------- /spec-lts6/ghcjs-base.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts6/ghcjs-base.cabal -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Encode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Encode.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Encoding.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Encoding.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Encoding/Builder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Encoding/Builder.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Internal.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Internal/Time.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Internal/Time.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Parser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Parser.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Parser/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Parser/Internal.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Parser/Time.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Parser/Time.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/TH.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/TH.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Text.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Types.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Types/Class.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Types/Class.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Types/FromJSON.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Types/FromJSON.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Types/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Types/Generic.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Types/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Types/Internal.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/Data/Aeson/Types/ToJSON.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Data/Aeson/Types/ToJSON.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/LICENSE -------------------------------------------------------------------------------- /spec-lts8/aeson/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/README.markdown -------------------------------------------------------------------------------- /spec-lts8/aeson/Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/Setup.lhs -------------------------------------------------------------------------------- /spec-lts8/aeson/aeson.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/aeson.cabal -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/AesonEncode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/AesonEncode.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/AesonFoldable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/AesonFoldable.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/AesonMap.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/AesonMap.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/AesonParse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/AesonParse.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/AesonTuples.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/AesonTuples.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Compare.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Compare.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/CompareWithJSON.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/CompareWithJSON.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Dates.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Dates.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/JsonParse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/JsonParse.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Makefile -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Micro.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Micro.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Options.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/ReadFile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/ReadFile.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Typed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Typed.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Typed/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Typed/Common.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Typed/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Typed/Generic.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Typed/Manual.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Typed/Manual.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/Typed/TH.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/Typed/TH.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/bench-parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/bench-parse.py -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/encode.py -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/json-data/jp10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/json-data/jp10.json -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/json-data/jp50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/json-data/jp50.json -------------------------------------------------------------------------------- /spec-lts8/aeson/benchmarks/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/benchmarks/parse.py -------------------------------------------------------------------------------- /spec-lts8/aeson/cbits/unescape_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/cbits/unescape_string.c -------------------------------------------------------------------------------- /spec-lts8/aeson/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/changelog.md -------------------------------------------------------------------------------- /spec-lts8/aeson/examples/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/examples/Generic.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/examples/Simplest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/examples/Simplest.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/examples/TemplateHaskell.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/examples/TemplateHaskell.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/examples/Twitter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/examples/Twitter.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/examples/Twitter/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/examples/Twitter/Generic.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/examples/Twitter/Manual.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/examples/Twitter/Manual.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/examples/Twitter/TH.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/examples/Twitter/TH.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/examples/aeson-examples.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/examples/aeson-examples.cabal -------------------------------------------------------------------------------- /spec-lts8/aeson/include/incoherent-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/include/incoherent-compat.h -------------------------------------------------------------------------------- /spec-lts8/aeson/include/overlapping-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/include/overlapping-compat.h -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/DataFamilies/Encoders.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/DataFamilies/Encoders.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/DataFamilies/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/DataFamilies/Types.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/Encoders.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/Encoders.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/Functions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/Functions.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/Instances.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/Instances.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/Options.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/Properties.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/Properties.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/Tests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/Tests.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/Types.hs -------------------------------------------------------------------------------- /spec-lts8/aeson/tests/UnitTests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/aeson/tests/UnitTests.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Applicative.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Applicative.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Arrow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Arrow.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Category.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Category.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Concurrent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Concurrent.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Concurrent/Chan.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Concurrent/Chan.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Concurrent/MVar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Concurrent/MVar.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Concurrent/QSem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Concurrent/QSem.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Exception.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Exception.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Exception/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Exception/Base.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/Fail.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/Fail.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/Fix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/Fix.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/IO/Class.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/IO/Class.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/Instances.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/Instances.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/ST.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/ST.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/ST/Imp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/ST/Imp.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/ST/Lazy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/ST/Lazy.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/ST/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/ST/Safe.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/ST/Strict.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/ST/Strict.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/ST/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/ST/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Control/Monad/Zip.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Control/Monad/Zip.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Bifunctor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Bifunctor.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Bits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Bits.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Bool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Bool.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Char.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Char.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Coerce.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Coerce.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Complex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Complex.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Data.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Data.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Dynamic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Dynamic.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Either.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Either.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Eq.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Eq.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Fixed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Fixed.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Foldable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Foldable.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Function.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Function.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Functor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Functor.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Functor/Classes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Functor/Classes.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Functor/Compose.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Functor/Compose.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Functor/Const.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Functor/Const.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Functor/Identity.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Functor/Identity.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Functor/Product.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Functor/Product.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Functor/Sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Functor/Sum.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/IORef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/IORef.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Int.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Int.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Ix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Ix.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Kind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Kind.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/List.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/List.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/List/NonEmpty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/List/NonEmpty.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Maybe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Maybe.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Monoid.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Monoid.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/OldList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/OldList.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Ord.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Ord.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Proxy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Proxy.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Ratio.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Ratio.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/STRef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/STRef.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/STRef/Lazy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/STRef/Lazy.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/STRef/Strict.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/STRef/Strict.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Semigroup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Semigroup.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/String.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/String.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Traversable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Traversable.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Tuple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Tuple.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Type/Bool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Type/Bool.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Type/Coercion.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Type/Coercion.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Type/Equality.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Type/Equality.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Typeable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Typeable.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Typeable/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Typeable/Internal.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Unique.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Unique.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Version.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Void.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Void.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Data/Word.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Data/Word.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Debug/Trace.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Debug/Trace.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/C.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/C/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/C/Error.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/C/String.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/C/String.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/C/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/C/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Concurrent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Concurrent.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/ForeignPtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/ForeignPtr.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/ForeignPtr/Imp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/ForeignPtr/Imp.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/ForeignPtr/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/ForeignPtr/Safe.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Marshal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Marshal.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Marshal/Alloc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Marshal/Alloc.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Marshal/Array.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Marshal/Array.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Marshal/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Marshal/Error.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Marshal/Pool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Marshal/Pool.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Marshal/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Marshal/Safe.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Marshal/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Marshal/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Marshal/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Marshal/Utils.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Ptr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Ptr.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Safe.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/StablePtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/StablePtr.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Foreign/Storable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Foreign/Storable.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Arr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Arr.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Base.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Char.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Char.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Conc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Conc.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Conc/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Conc/IO.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Conc/Signal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Conc/Signal.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Conc/Sync.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Conc/Sync.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Conc/Windows.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Conc/Windows.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/ConsoleHandler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/ConsoleHandler.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Constants.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Constants.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Desugar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Desugar.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Enum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Enum.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Environment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Environment.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Err.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Err.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/Arr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/Arr.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/Array.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/Array.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/Clock.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/Clock.hsc -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/Control.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/Control.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/EPoll.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/EPoll.hsc -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/IntTable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/IntTable.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/Internal.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/KQueue.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/KQueue.hsc -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/Manager.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/Manager.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/PSQ.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/PSQ.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/Poll.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/Poll.hsc -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/Thread.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/Thread.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/TimerManager.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/TimerManager.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Event/Unique.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Event/Unique.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Exception.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Exception.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Exception.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Exception.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/ExecutionStack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/ExecutionStack.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Exts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Exts.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Fingerprint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Fingerprint.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Fingerprint.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Fingerprint.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Fingerprint/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Fingerprint/Type.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Float.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Float.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Foreign.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Foreign.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/ForeignPtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/ForeignPtr.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/GHCi.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/GHCi.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Generics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Generics.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Buffer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Buffer.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/BufferedIO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/BufferedIO.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Device.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Device.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Encoding.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Encoding.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Encoding.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Encoding.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Encoding/Failure.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Encoding/Failure.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Encoding/Iconv.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Encoding/Iconv.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Encoding/Latin1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Encoding/Latin1.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Encoding/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Encoding/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Encoding/UTF16.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Encoding/UTF16.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Encoding/UTF32.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Encoding/UTF32.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Encoding/UTF8.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Encoding/UTF8.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Exception.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Exception.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Exception.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Exception.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/FD.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/FD.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Handle.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Handle.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Handle.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Handle.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Handle/FD.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Handle/FD.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Handle/FD.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Handle/FD.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Handle/Internals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Handle/Internals.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Handle/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Handle/Text.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Handle/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Handle/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/IOMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/IOMode.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IO/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IO/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IOArray.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IOArray.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/IORef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/IORef.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Int.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Int.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/List.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/List.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/MVar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/MVar.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Natural.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Natural.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Num.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Num.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/OldList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/OldList.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/OverloadedLabels.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/OverloadedLabels.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/PArr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/PArr.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Pack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Pack.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Profiling.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Profiling.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Ptr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Ptr.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/RTS/Flags.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/RTS/Flags.hsc -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Read.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Read.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Real.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Real.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/ST.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/ST.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/STRef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/STRef.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Show.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Show.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Stable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Stable.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Stack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Stack.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Stack/CCS.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Stack/CCS.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Stack/CCS.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Stack/CCS.hsc -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Stack/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Stack/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/StaticPtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/StaticPtr.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Stats.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Stats.hsc -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Storable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Storable.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/TopHandler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/TopHandler.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/TypeLits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/TypeLits.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Unicode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Unicode.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Weak.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Weak.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Windows.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Windows.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/GHC/Word.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/GHC/Word.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/LICENSE -------------------------------------------------------------------------------- /spec-lts8/base-pure/Numeric.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Numeric.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Numeric/Natural.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Numeric/Natural.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Prelude.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Setup.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/CPUTime.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/CPUTime.hsc -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Console/GetOpt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Console/GetOpt.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Environment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Environment.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Exit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Exit.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/IO.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/IO/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/IO/Error.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/IO/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/IO/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Info.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Info.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Mem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Mem.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Mem/StableName.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Mem/StableName.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Mem/Weak.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Mem/Weak.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Posix/Internals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Posix/Internals.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Posix/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Posix/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/System/Timeout.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/System/Timeout.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Text/Printf.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Text/Printf.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Text/Read.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Text/Read.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Text/Read/Lex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Text/Read/Lex.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Text/Show.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Text/Show.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Text/Show/Functions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Text/Show/Functions.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/Unsafe/Coerce.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/Unsafe/Coerce.hs -------------------------------------------------------------------------------- /spec-lts8/base-pure/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/aclocal.m4 -------------------------------------------------------------------------------- /spec-lts8/base-pure/base.buildinfo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/base.buildinfo.in -------------------------------------------------------------------------------- /spec-lts8/base-pure/base.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/base.cabal -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/DarwinUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/DarwinUtils.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/PrelIOUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/PrelIOUtils.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/SetEnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/SetEnv.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/WCsubst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/WCsubst.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/Win32Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/Win32Utils.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/consUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/consUtils.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/iconv.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/inputReady.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/inputReady.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/md5.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/primFloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/primFloat.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/rts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/rts.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/cbits/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/cbits/sysconf.c -------------------------------------------------------------------------------- /spec-lts8/base-pure/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/changelog.md -------------------------------------------------------------------------------- /spec-lts8/base-pure/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/config.guess -------------------------------------------------------------------------------- /spec-lts8/base-pure/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/config.sub -------------------------------------------------------------------------------- /spec-lts8/base-pure/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/configure -------------------------------------------------------------------------------- /spec-lts8/base-pure/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/configure.ac -------------------------------------------------------------------------------- /spec-lts8/base-pure/include/CTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/include/CTypes.h -------------------------------------------------------------------------------- /spec-lts8/base-pure/include/EventConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/include/EventConfig.h.in -------------------------------------------------------------------------------- /spec-lts8/base-pure/include/HsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/include/HsBase.h -------------------------------------------------------------------------------- /spec-lts8/base-pure/include/HsBaseConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/include/HsBaseConfig.h.in -------------------------------------------------------------------------------- /spec-lts8/base-pure/include/WCsubst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/include/WCsubst.h -------------------------------------------------------------------------------- /spec-lts8/base-pure/include/consUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/include/consUtils.h -------------------------------------------------------------------------------- /spec-lts8/base-pure/include/ieee-flpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/include/ieee-flpt.h -------------------------------------------------------------------------------- /spec-lts8/base-pure/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/include/md5.h -------------------------------------------------------------------------------- /spec-lts8/base-pure/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base-pure/install-sh -------------------------------------------------------------------------------- /spec-lts8/base/Control/Applicative.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Applicative.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Arrow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Arrow.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Category.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Category.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Concurrent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Concurrent.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Concurrent/Chan.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Concurrent/Chan.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Concurrent/MVar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Concurrent/MVar.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Concurrent/QSem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Concurrent/QSem.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Concurrent/QSemN.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Concurrent/QSemN.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Exception.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Exception.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Exception/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Exception/Base.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/Fail.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/Fail.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/Fix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/Fix.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/IO/Class.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/IO/Class.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/Instances.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/Instances.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/ST.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/ST.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/ST/Imp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/ST/Imp.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/ST/Lazy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/ST/Lazy.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/ST/Lazy/Imp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/ST/Lazy/Imp.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/ST/Lazy/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/ST/Lazy/Safe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/ST/Lazy/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/ST/Lazy/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/ST/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/ST/Safe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/ST/Strict.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/ST/Strict.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/ST/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/ST/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Control/Monad/Zip.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Control/Monad/Zip.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Bifunctor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Bifunctor.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Bits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Bits.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Bool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Bool.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Char.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Char.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Coerce.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Coerce.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Complex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Complex.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Data.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Data.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Dynamic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Dynamic.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Either.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Either.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Eq.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Eq.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Fixed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Fixed.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Foldable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Foldable.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Function.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Function.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Functor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Functor.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Functor/Classes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Functor/Classes.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Functor/Compose.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Functor/Compose.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Functor/Const.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Functor/Const.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Functor/Identity.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Functor/Identity.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Functor/Product.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Functor/Product.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Functor/Sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Functor/Sum.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/IORef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/IORef.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Int.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Int.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Ix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Ix.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Kind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Kind.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/List.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/List.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/List/NonEmpty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/List/NonEmpty.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Maybe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Maybe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Monoid.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Monoid.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/OldList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/OldList.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Ord.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Ord.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Proxy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Proxy.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Ratio.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Ratio.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/STRef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/STRef.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/STRef/Lazy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/STRef/Lazy.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/STRef/Strict.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/STRef/Strict.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Semigroup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Semigroup.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/String.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/String.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Traversable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Traversable.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Tuple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Tuple.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Type/Bool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Type/Bool.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Type/Coercion.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Type/Coercion.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Type/Equality.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Type/Equality.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Typeable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Typeable.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Typeable/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Typeable/Internal.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Unique.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Unique.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Version.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Void.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Void.hs -------------------------------------------------------------------------------- /spec-lts8/base/Data/Word.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Data/Word.hs -------------------------------------------------------------------------------- /spec-lts8/base/Debug/Trace.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Debug/Trace.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/C.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/C/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/C/Error.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/C/String.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/C/String.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/C/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/C/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Concurrent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Concurrent.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/ForeignPtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/ForeignPtr.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/ForeignPtr/Imp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/ForeignPtr/Imp.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/ForeignPtr/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/ForeignPtr/Safe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/ForeignPtr/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/ForeignPtr/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Marshal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Marshal.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Marshal/Alloc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Marshal/Alloc.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Marshal/Array.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Marshal/Array.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Marshal/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Marshal/Error.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Marshal/Pool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Marshal/Pool.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Marshal/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Marshal/Safe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Marshal/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Marshal/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Marshal/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Marshal/Utils.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Ptr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Ptr.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Safe.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/StablePtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/StablePtr.hs -------------------------------------------------------------------------------- /spec-lts8/base/Foreign/Storable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Foreign/Storable.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Arr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Arr.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Base.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Char.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Char.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Conc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Conc.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Conc/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Conc/IO.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Conc/Signal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Conc/Signal.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Conc/Sync.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Conc/Sync.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Conc/Windows.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Conc/Windows.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/ConsoleHandler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/ConsoleHandler.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Constants.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Constants.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Desugar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Desugar.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Enum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Enum.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Environment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Environment.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Err.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Err.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/Arr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/Arr.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/Array.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/Array.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/Clock.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/Clock.hsc -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/Control.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/Control.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/EPoll.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/EPoll.hsc -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/IntTable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/IntTable.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/Internal.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/KQueue.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/KQueue.hsc -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/Manager.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/Manager.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/PSQ.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/PSQ.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/Poll.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/Poll.hsc -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/Thread.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/Thread.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/TimerManager.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/TimerManager.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Event/Unique.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Event/Unique.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Exception.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Exception.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Exception.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Exception.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base/GHC/ExecutionStack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/ExecutionStack.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/ExecutionStack/Internal.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/ExecutionStack/Internal.hsc -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Exts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Exts.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Fingerprint.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Fingerprint.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Fingerprint.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Fingerprint.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Fingerprint/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Fingerprint/Type.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Float.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Float.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Float/ConversionUtils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Float/ConversionUtils.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Float/RealFracMethods.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Float/RealFracMethods.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Foreign.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Foreign.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/ForeignPtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/ForeignPtr.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/GHCi.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/GHCi.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Generics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Generics.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Buffer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Buffer.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/BufferedIO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/BufferedIO.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Device.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Device.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding/CodePage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding/CodePage.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding/CodePage/API.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding/CodePage/API.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding/Failure.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding/Failure.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding/Iconv.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding/Iconv.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding/Latin1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding/Latin1.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding/UTF16.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding/UTF16.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding/UTF32.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding/UTF32.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Encoding/UTF8.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Encoding/UTF8.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Exception.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Exception.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Exception.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Exception.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/FD.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/FD.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Handle.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Handle.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Handle.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Handle.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Handle/FD.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Handle/FD.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Handle/FD.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Handle/FD.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Handle/Internals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Handle/Internals.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Handle/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Handle/Text.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Handle/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Handle/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/IOMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/IOMode.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IO/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IO/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IOArray.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IOArray.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/IORef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/IORef.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Int.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Int.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/List.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/List.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/MVar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/MVar.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Natural.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Natural.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Num.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Num.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/OldList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/OldList.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/OverloadedLabels.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/OverloadedLabels.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/PArr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/PArr.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Pack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Pack.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Profiling.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Profiling.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Ptr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Ptr.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/RTS/Flags.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/RTS/Flags.hsc -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Read.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Read.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Real.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Real.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/ST.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/ST.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/STRef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/STRef.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Show.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Show.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Stable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Stable.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Stack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Stack.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Stack/CCS.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Stack/CCS.hs-boot -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Stack/CCS.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Stack/CCS.hsc -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Stack/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Stack/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/StaticPtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/StaticPtr.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Stats.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Stats.hsc -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Storable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Storable.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/TopHandler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/TopHandler.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/TypeLits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/TypeLits.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Unicode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Unicode.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Weak.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Weak.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Windows.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Windows.hs -------------------------------------------------------------------------------- /spec-lts8/base/GHC/Word.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/GHC/Word.hs -------------------------------------------------------------------------------- /spec-lts8/base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/LICENSE -------------------------------------------------------------------------------- /spec-lts8/base/Numeric.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Numeric.hs -------------------------------------------------------------------------------- /spec-lts8/base/Numeric/Natural.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Numeric/Natural.hs -------------------------------------------------------------------------------- /spec-lts8/base/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Prelude.hs -------------------------------------------------------------------------------- /spec-lts8/base/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Setup.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/CPUTime.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/CPUTime.hsc -------------------------------------------------------------------------------- /spec-lts8/base/System/Console/GetOpt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Console/GetOpt.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/Environment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Environment.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/Exit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Exit.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/IO.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/IO/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/IO/Error.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/IO/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/IO/Unsafe.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/Info.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Info.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/Mem.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Mem.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/Mem/StableName.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Mem/StableName.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/Mem/Weak.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Mem/Weak.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/Posix/Internals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Posix/Internals.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/Posix/Internals.hs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Posix/Internals.hs.orig -------------------------------------------------------------------------------- /spec-lts8/base/System/Posix/Internals.hs.rej: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Posix/Internals.hs.rej -------------------------------------------------------------------------------- /spec-lts8/base/System/Posix/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Posix/Types.hs -------------------------------------------------------------------------------- /spec-lts8/base/System/Posix/clean-ghcjs1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Posix/clean-ghcjs1.patch -------------------------------------------------------------------------------- /spec-lts8/base/System/Timeout.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/System/Timeout.hs -------------------------------------------------------------------------------- /spec-lts8/base/Text/ParserCombinators/ReadP.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Text/ParserCombinators/ReadP.hs -------------------------------------------------------------------------------- /spec-lts8/base/Text/Printf.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Text/Printf.hs -------------------------------------------------------------------------------- /spec-lts8/base/Text/Read.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Text/Read.hs -------------------------------------------------------------------------------- /spec-lts8/base/Text/Read/Lex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Text/Read/Lex.hs -------------------------------------------------------------------------------- /spec-lts8/base/Text/Show.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Text/Show.hs -------------------------------------------------------------------------------- /spec-lts8/base/Text/Show/Functions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Text/Show/Functions.hs -------------------------------------------------------------------------------- /spec-lts8/base/Unsafe/Coerce.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/Unsafe/Coerce.hs -------------------------------------------------------------------------------- /spec-lts8/base/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/aclocal.m4 -------------------------------------------------------------------------------- /spec-lts8/base/base.buildinfo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/base.buildinfo.in -------------------------------------------------------------------------------- /spec-lts8/base/base.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/base.cabal -------------------------------------------------------------------------------- /spec-lts8/base/cbits/DarwinUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/DarwinUtils.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/PrelIOUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/PrelIOUtils.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/README.Unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/README.Unicode -------------------------------------------------------------------------------- /spec-lts8/base/cbits/SetEnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/SetEnv.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/WCsubst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/WCsubst.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/Win32Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/Win32Utils.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/consUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/consUtils.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/iconv.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/inputReady.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/inputReady.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/md5.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/primFloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/primFloat.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/rts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/rts.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/sysconf.c -------------------------------------------------------------------------------- /spec-lts8/base/cbits/ubconfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/cbits/ubconfc -------------------------------------------------------------------------------- /spec-lts8/base/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/changelog.md -------------------------------------------------------------------------------- /spec-lts8/base/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/config.guess -------------------------------------------------------------------------------- /spec-lts8/base/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/config.sub -------------------------------------------------------------------------------- /spec-lts8/base/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/configure -------------------------------------------------------------------------------- /spec-lts8/base/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/configure.ac -------------------------------------------------------------------------------- /spec-lts8/base/include/CTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/include/CTypes.h -------------------------------------------------------------------------------- /spec-lts8/base/include/EventConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/include/EventConfig.h.in -------------------------------------------------------------------------------- /spec-lts8/base/include/HsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/include/HsBase.h -------------------------------------------------------------------------------- /spec-lts8/base/include/HsBaseConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/include/HsBaseConfig.h.in -------------------------------------------------------------------------------- /spec-lts8/base/include/HsEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/include/HsEvent.h -------------------------------------------------------------------------------- /spec-lts8/base/include/WCsubst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/include/WCsubst.h -------------------------------------------------------------------------------- /spec-lts8/base/include/consUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/include/consUtils.h -------------------------------------------------------------------------------- /spec-lts8/base/include/ieee-flpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/include/ieee-flpt.h -------------------------------------------------------------------------------- /spec-lts8/base/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/include/md5.h -------------------------------------------------------------------------------- /spec-lts8/base/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/base/install-sh -------------------------------------------------------------------------------- /spec-lts8/boot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/boot.yaml -------------------------------------------------------------------------------- /spec-lts8/cabal/.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/.arcconfig -------------------------------------------------------------------------------- /spec-lts8/cabal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/.gitignore -------------------------------------------------------------------------------- /spec-lts8/cabal/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/.travis.yml -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Cabal.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Cabal.cabal -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/Compiler.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/Compiler.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/GetOpt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/GetOpt.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/Lex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/Lex.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/License.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/License.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/Make.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/Make.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/Package.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/Package.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/ReadE.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/ReadE.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/Simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/Simple.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/System.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/System.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/Text.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Distribution/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Distribution/Version.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/LICENSE -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Makefile -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/README.md -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/Setup.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/changelog -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/doc/Cabal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/doc/Cabal.css -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/doc/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/doc/index.markdown -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/doc/misc.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/doc/misc.markdown -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/prologue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/prologue.txt -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/tests/PackageTests.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/.gitignore: -------------------------------------------------------------------------------- 1 | test-log.txt 2 | Setup 3 | /TestSuiteExeV10/dist-* 4 | tmp.package.conf 5 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/BuildTargetErrors/Main.hs: -------------------------------------------------------------------------------- 1 | main = return () 2 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/HaddockNewline/A.hs: -------------------------------------------------------------------------------- 1 | module A where 2 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/HaddockNewline/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/PreProcess/Foo.hsc: -------------------------------------------------------------------------------- 1 | module Foo where 2 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/ReexportedModules/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/TestNameCollision/child/Child.hs: -------------------------------------------------------------------------------- 1 | module Child where 2 | import Parent 3 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/TestNameCollision/parent/Parent.hs: -------------------------------------------------------------------------------- 1 | module Parent where 2 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/UniqueIPID/P1/M.hs: -------------------------------------------------------------------------------- 1 | module M(m) where 2 | 3 | m = print "1" 4 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/PackageTests/UniqueIPID/P2/M.hs: -------------------------------------------------------------------------------- 1 | module M(m) where 2 | 3 | m = print "2" 4 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/tests/README.md -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | 4 | -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/Test/Laws.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/tests/Test/Laws.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/UnitTests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/tests/UnitTests.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/hackage/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/tests/hackage/check.sh -------------------------------------------------------------------------------- /spec-lts8/cabal/Cabal/tests/hackage/unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/Cabal/tests/hackage/unpack.sh -------------------------------------------------------------------------------- /spec-lts8/cabal/HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/HACKING.md -------------------------------------------------------------------------------- /spec-lts8/cabal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/LICENSE -------------------------------------------------------------------------------- /spec-lts8/cabal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/README.md -------------------------------------------------------------------------------- /spec-lts8/cabal/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/appveyor.yml -------------------------------------------------------------------------------- /spec-lts8/cabal/cabal-install/.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/cabal-install/.ghci -------------------------------------------------------------------------------- /spec-lts8/cabal/cabal-install/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/cabal-install/LICENSE -------------------------------------------------------------------------------- /spec-lts8/cabal/cabal-install/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/cabal-install/Main.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/cabal-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/cabal-install/README.md -------------------------------------------------------------------------------- /spec-lts8/cabal/cabal-install/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/cabal-install/Setup.hs -------------------------------------------------------------------------------- /spec-lts8/cabal/cabal-install/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/cabal-install/bootstrap.sh -------------------------------------------------------------------------------- /spec-lts8/cabal/cabal-install/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/cabal-install/changelog -------------------------------------------------------------------------------- /spec-lts8/cabal/cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/cabal.project -------------------------------------------------------------------------------- /spec-lts8/cabal/ghc-packages: -------------------------------------------------------------------------------- 1 | Cabal 2 | 3 | -------------------------------------------------------------------------------- /spec-lts8/cabal/setup-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/setup-dev.sh -------------------------------------------------------------------------------- /spec-lts8/cabal/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/cabal/stack.yaml -------------------------------------------------------------------------------- /spec-lts8/ghc-boot-th/GHC/Lexeme.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot-th/GHC/Lexeme.hs -------------------------------------------------------------------------------- /spec-lts8/ghc-boot-th/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot-th/GNUmakefile -------------------------------------------------------------------------------- /spec-lts8/ghc-boot-th/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot-th/LICENSE -------------------------------------------------------------------------------- /spec-lts8/ghc-boot-th/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot-th/changelog.md -------------------------------------------------------------------------------- /spec-lts8/ghc-boot-th/ghc-boot-th.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot-th/ghc-boot-th.cabal -------------------------------------------------------------------------------- /spec-lts8/ghc-boot-th/ghc-boot-th.cabal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot-th/ghc-boot-th.cabal.in -------------------------------------------------------------------------------- /spec-lts8/ghc-boot-th/ghc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot-th/ghc.mk -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/GHC/LanguageExtensions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/GHC/LanguageExtensions.hs -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/GHC/Lexeme.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/GHC/Lexeme.hs -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/GHC/PackageDb.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/GHC/PackageDb.hs -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/GHC/Serialized.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/GHC/Serialized.hs -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/GNUmakefile -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/LICENSE -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/changelog.md -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/ghc-boot.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/ghc-boot.cabal -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/ghc-boot.cabal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/ghc-boot.cabal.in -------------------------------------------------------------------------------- /spec-lts8/ghc-boot/ghc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc-boot/ghc.mk -------------------------------------------------------------------------------- /spec-lts8/ghc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc/LICENSE -------------------------------------------------------------------------------- /spec-lts8/ghc/ghc.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc/ghc.cabal -------------------------------------------------------------------------------- /spec-lts8/ghc/main/Plugins.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghc/main/Plugins.hs -------------------------------------------------------------------------------- /spec-lts8/ghc/stage2/empty.txt: -------------------------------------------------------------------------------- 1 | empty 2 | -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/BreakArray.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/BreakArray.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/CreateBCO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/CreateBCO.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/FFI.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/FFI.hsc -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/InfoTable.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/InfoTable.hsc -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/Message.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/Message.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/ObjLink.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/ObjLink.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/RemoteTypes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/RemoteTypes.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/ResolvedBCO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/ResolvedBCO.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/Run.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/Run.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/Signals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/Signals.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/TH.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/TH.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GHCi/TH/Binary.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GHCi/TH/Binary.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/GNUmakefile -------------------------------------------------------------------------------- /spec-lts8/ghci/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/LICENSE -------------------------------------------------------------------------------- /spec-lts8/ghci/SizedSeq.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/SizedSeq.hs -------------------------------------------------------------------------------- /spec-lts8/ghci/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/changelog.md -------------------------------------------------------------------------------- /spec-lts8/ghci/ghc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/ghc.mk -------------------------------------------------------------------------------- /spec-lts8/ghci/ghci.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/ghci.cabal -------------------------------------------------------------------------------- /spec-lts8/ghci/ghci.cabal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghci/ghci.cabal.in -------------------------------------------------------------------------------- /spec-lts8/ghcjs-base.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/ghcjs-base.cabal -------------------------------------------------------------------------------- /spec-lts8/thrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/thrunner.js -------------------------------------------------------------------------------- /spec-lts8/unix-bad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/LICENSE -------------------------------------------------------------------------------- /spec-lts8/unix-bad/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/Setup.hs -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix.hs -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/ByteString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/ByteString.hs -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Directory.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Directory.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Env.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Env.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Error.hs -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Fcntl.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Fcntl.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Files.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Files.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/IO.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/IO.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/IO/Common.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/IO/Common.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Process.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Process.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Resource.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Resource.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Semaphore.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Semaphore.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/SharedMem.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/SharedMem.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Signals.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Signals.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Temp.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Temp.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Terminal.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Terminal.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Time.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Time.hs -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/Unistd.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/Unistd.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/System/Posix/User.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/System/Posix/User.hsc -------------------------------------------------------------------------------- /spec-lts8/unix-bad/cbits/HsUnix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/cbits/HsUnix.c -------------------------------------------------------------------------------- /spec-lts8/unix-bad/cbits/execvpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/cbits/execvpe.c -------------------------------------------------------------------------------- /spec-lts8/unix-bad/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/changelog.md -------------------------------------------------------------------------------- /spec-lts8/unix-bad/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/config.guess -------------------------------------------------------------------------------- /spec-lts8/unix-bad/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/config.sub -------------------------------------------------------------------------------- /spec-lts8/unix-bad/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/configure -------------------------------------------------------------------------------- /spec-lts8/unix-bad/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/configure.ac -------------------------------------------------------------------------------- /spec-lts8/unix-bad/include/HsUnix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/include/HsUnix.h -------------------------------------------------------------------------------- /spec-lts8/unix-bad/include/HsUnixConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/include/HsUnixConfig.h.in -------------------------------------------------------------------------------- /spec-lts8/unix-bad/include/execvpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/include/execvpe.h -------------------------------------------------------------------------------- /spec-lts8/unix-bad/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/install-sh -------------------------------------------------------------------------------- /spec-lts8/unix-bad/unix.buildinfo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/unix.buildinfo.in -------------------------------------------------------------------------------- /spec-lts8/unix-bad/unix.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix-bad/unix.cabal -------------------------------------------------------------------------------- /spec-lts8/unix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/LICENSE -------------------------------------------------------------------------------- /spec-lts8/unix/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/Setup.hs -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix.hs -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/ByteString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/ByteString.hs -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Directory.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Directory.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/DynamicLinker.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/DynamicLinker.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Env.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Env.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Env/ByteString.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Env/ByteString.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Error.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Error.hs -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Fcntl.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Fcntl.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Files.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Files.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Files/Common.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Files/Common.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/IO.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/IO.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/IO/ByteString.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/IO/ByteString.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/IO/Common.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/IO/Common.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Process.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Process.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Process/Common.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Process/Common.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Resource.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Resource.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Semaphore.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Semaphore.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/SharedMem.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/SharedMem.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Signals.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Signals.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Signals/Exts.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Signals/Exts.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Temp.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Temp.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Terminal.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Terminal.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Time.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Time.hs -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/Unistd.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/Unistd.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/System/Posix/User.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/System/Posix/User.hsc -------------------------------------------------------------------------------- /spec-lts8/unix/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/aclocal.m4 -------------------------------------------------------------------------------- /spec-lts8/unix/cbits/HsUnix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/cbits/HsUnix.c -------------------------------------------------------------------------------- /spec-lts8/unix/cbits/execvpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/cbits/execvpe.c -------------------------------------------------------------------------------- /spec-lts8/unix/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/changelog.md -------------------------------------------------------------------------------- /spec-lts8/unix/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/config.guess -------------------------------------------------------------------------------- /spec-lts8/unix/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/config.sub -------------------------------------------------------------------------------- /spec-lts8/unix/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/configure -------------------------------------------------------------------------------- /spec-lts8/unix/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/configure.ac -------------------------------------------------------------------------------- /spec-lts8/unix/include/HsUnix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/include/HsUnix.h -------------------------------------------------------------------------------- /spec-lts8/unix/include/HsUnixConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/include/HsUnixConfig.h.in -------------------------------------------------------------------------------- /spec-lts8/unix/include/execvpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/include/execvpe.h -------------------------------------------------------------------------------- /spec-lts8/unix/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/install-sh -------------------------------------------------------------------------------- /spec-lts8/unix/unix.buildinfo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/unix.buildinfo.in -------------------------------------------------------------------------------- /spec-lts8/unix/unix.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-lts8/unix/unix.cabal -------------------------------------------------------------------------------- /spec-nightly/boot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-nightly/boot.yaml -------------------------------------------------------------------------------- /spec-nightly/ghcjs-base.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/spec-nightly/ghcjs-base.cabal -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/src/Main.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolysz/prepare-ghcjs/HEAD/stack.yaml --------------------------------------------------------------------------------