├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── app ├── Indexer.hs ├── Server.hs └── Store.hs ├── cabal.project ├── cabal.project.freeze ├── haskell-code-explorer.cabal ├── install.hs ├── javascript ├── .ember-cli ├── .eslintrc.js ├── .gitignore ├── .watchmanconfig ├── README.md ├── app │ ├── app.js │ ├── components │ │ ├── .gitkeep │ │ ├── bottom-panel.js │ │ ├── expression-info.js │ │ ├── file-tree.js │ │ ├── haskell-module.js │ │ ├── identifier-info.js │ │ ├── identifier-name.js │ │ ├── infinite-list.js │ │ ├── info-window.js │ │ ├── input-with-autocomplete.js │ │ ├── instance-info.js │ │ ├── paginated-list.js │ │ ├── resizable-panel.js │ │ ├── text-file.js │ │ ├── type-component.js │ │ ├── type-signature-text.js │ │ └── type-signature.js │ ├── controllers │ │ ├── application.js │ │ ├── package.js │ │ ├── package │ │ │ ├── index.js │ │ │ ├── search.js │ │ │ └── show │ │ │ │ └── file.js │ │ ├── packages.js │ │ └── search.js │ ├── helpers │ │ └── .gitkeep │ ├── index.html │ ├── router.js │ ├── routes │ │ ├── application.js │ │ ├── package.js │ │ ├── package │ │ │ ├── index.js │ │ │ ├── search.js │ │ │ └── show │ │ │ │ ├── file.js │ │ │ │ └── index.js │ │ ├── packages.js │ │ └── search.js │ ├── services │ │ ├── settings.js │ │ └── store.js │ ├── styles │ │ └── app.scss │ ├── templates │ │ ├── application.hbs │ │ ├── bad-url.hbs │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── bottom-panel.hbs │ │ │ ├── expression-info.hbs │ │ │ ├── file-tree.hbs │ │ │ ├── haskell-module.hbs │ │ │ ├── identifier-info.hbs │ │ │ ├── identifier-name.hbs │ │ │ ├── infinite-list.hbs │ │ │ ├── info-window.hbs │ │ │ ├── input-with-autocomplete.hbs │ │ │ ├── instance-info.hbs │ │ │ ├── paginated-list.hbs │ │ │ ├── resizable-panel.hbs │ │ │ ├── text-file.hbs │ │ │ ├── type-component.hbs │ │ │ ├── type-signature-text.hbs │ │ │ └── type-signature.hbs │ │ ├── package.hbs │ │ ├── package │ │ │ ├── index.hbs │ │ │ ├── search.hbs │ │ │ ├── show.hbs │ │ │ └── show │ │ │ │ └── file.hbs │ │ ├── packages.hbs │ │ └── search.hbs │ └── utils │ │ ├── api-urls.js │ │ ├── color-themes.js │ │ ├── go-to-definition.js │ │ ├── language-extensions.js │ │ └── line-selection.js ├── bower.json ├── config │ ├── environment.js │ └── targets.js ├── ember-cli-build.js ├── package.json ├── public │ ├── assets │ │ ├── 32px.png │ │ ├── 40px.png │ │ ├── favicon.ico │ │ ├── haskell.ico │ │ └── throbber.gif │ └── robots.txt ├── release │ ├── assets │ │ ├── 32px-eebaf260766f5e0e773f53d3ea4f3e4d.png │ │ ├── 40px-51286e68b083696edaf4f9fc577e2a2d.png │ │ ├── favicon.ico │ │ ├── haskell-code-explorer-3325784c864ca6662b97be678eeea861.js │ │ ├── haskell-code-explorer-717832df8786392c9b8a9bd8010463d2.css │ │ ├── haskell.ico │ │ ├── throbber-62be6ed2b189444b472b8000dc187240.gif │ │ ├── vendor-b97a1e7d03d00bb4514dc45da44b51ff.js │ │ └── vendor-c68699fa3ef851ebff1b584737d944c2.css │ ├── index.html │ └── robots.txt ├── server │ ├── .eslintrc.js │ ├── index.js │ └── mocks │ │ └── packages.js ├── testem.js ├── tests │ ├── .eslintrc.js │ ├── acceptance │ │ ├── haskell-module-test.js │ │ ├── package-test.js │ │ └── packages-test.js │ ├── helpers │ │ └── .gitkeep │ ├── index.html │ ├── integration │ │ ├── .gitkeep │ │ └── components │ │ │ └── .gitkeep │ └── test-helper.js └── vendor │ ├── .gitkeep │ └── jquery-ui-1.12.1.custom │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── external │ └── jquery │ │ └── jquery.js │ ├── images │ ├── ui-icons_444444_256x240.png │ ├── ui-icons_555555_256x240.png │ ├── ui-icons_777620_256x240.png │ ├── ui-icons_777777_256x240.png │ ├── ui-icons_cc0000_256x240.png │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ └── package.json ├── src └── HaskellCodeExplorer │ ├── AST │ ├── RenamedSource.hs │ └── TypecheckedSource.hs │ ├── GhcUtils.hs │ ├── ModuleInfo.hs │ ├── PackageInfo.hs │ ├── Preprocessor.hs │ └── Types.hs ├── stack-8.0.2.yaml ├── stack-8.2.2.yaml ├── stack-8.4.3.yaml ├── stack-8.4.4.yaml ├── stack-8.6.3.yaml ├── stack-8.6.4.yaml ├── stack-8.6.5.yaml ├── stack-8.8.3.yaml ├── stack.yaml ├── test ├── Main.hs ├── data │ ├── File.hs │ ├── File1.hs │ ├── File2.hs │ ├── File3.hs │ └── FileAfterPreprocessor.hs └── test-package │ ├── .gitignore │ ├── Setup.hs │ ├── app │ └── Main.hs │ ├── src │ ├── Lib.hs │ └── Types.hs │ ├── stack-8.0.2.yaml │ ├── stack-8.2.2.yaml │ ├── stack-8.4.3.yaml │ ├── stack-8.4.4.yaml │ ├── stack-8.6.3.yaml │ ├── stack-8.6.4.yaml │ ├── stack-8.6.5.yaml │ ├── stack.yaml │ ├── test-package.cabal │ └── test │ └── Spec.hs └── vendor └── cabal-helper-0.8.1.2 ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── Setup.hs ├── cabal-helper.cabal ├── cabal.project ├── lib └── Distribution │ └── Helper.hs ├── scripts ├── bump.sh ├── ci │ ├── build.sh │ ├── print-packages.sh │ ├── retry.sh │ └── steps │ │ ├── 00-config.sh │ │ ├── 05-print-packages.sh │ │ ├── 10-dependencies.sh │ │ ├── 15-print-packages.sh │ │ ├── 20-sdist.sh │ │ ├── 30-build.sh │ │ └── 40-test.sh └── update-cabal-common-section-instantiations.awk ├── src └── CabalHelper │ ├── Compiletime │ ├── Compat │ │ ├── Environment.hs │ │ ├── ProgramDb.hs │ │ └── Version.hs │ ├── Compile.hs │ ├── Data.hs │ ├── Log.hs │ ├── Types.hs │ └── Wrapper.hs │ ├── Runtime │ └── Main.hs │ └── Shared │ ├── Common.hs │ ├── InterfaceTypes.hs │ └── Sandbox.hs └── tests ├── CompileTest.hs ├── GhcSession.hs ├── bkpregex ├── Setup.hs ├── bkpregex.cabal ├── regex-example │ └── Main.hs ├── regex-indef │ ├── Regex.hs │ └── Str.hsig ├── regex-types │ └── Regex │ │ └── Types.hs └── str-impls │ └── Str │ ├── ByteString.hs │ └── String.hs ├── exeintlib ├── Exe.hs ├── Setup.hs ├── exeintlib.cabal ├── intlib │ └── IntLib.hs └── lib │ └── Lib.hs ├── exelib ├── Exe.hs ├── Setup.hs ├── exelib.cabal └── lib │ └── Lib.hs └── fliblib ├── FLib.hs ├── Setup.hs ├── fliblib.cabal └── lib └── Lib.hs /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Indexer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/app/Indexer.hs -------------------------------------------------------------------------------- /app/Server.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/app/Server.hs -------------------------------------------------------------------------------- /app/Store.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/app/Store.hs -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/cabal.project -------------------------------------------------------------------------------- /cabal.project.freeze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/cabal.project.freeze -------------------------------------------------------------------------------- /haskell-code-explorer.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/haskell-code-explorer.cabal -------------------------------------------------------------------------------- /install.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/install.hs -------------------------------------------------------------------------------- /javascript/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/.ember-cli -------------------------------------------------------------------------------- /javascript/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/.eslintrc.js -------------------------------------------------------------------------------- /javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/.gitignore -------------------------------------------------------------------------------- /javascript/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/README.md -------------------------------------------------------------------------------- /javascript/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/app.js -------------------------------------------------------------------------------- /javascript/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/app/components/bottom-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/bottom-panel.js -------------------------------------------------------------------------------- /javascript/app/components/expression-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/expression-info.js -------------------------------------------------------------------------------- /javascript/app/components/file-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/file-tree.js -------------------------------------------------------------------------------- /javascript/app/components/haskell-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/haskell-module.js -------------------------------------------------------------------------------- /javascript/app/components/identifier-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/identifier-info.js -------------------------------------------------------------------------------- /javascript/app/components/identifier-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/identifier-name.js -------------------------------------------------------------------------------- /javascript/app/components/infinite-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/infinite-list.js -------------------------------------------------------------------------------- /javascript/app/components/info-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/info-window.js -------------------------------------------------------------------------------- /javascript/app/components/input-with-autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/input-with-autocomplete.js -------------------------------------------------------------------------------- /javascript/app/components/instance-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/instance-info.js -------------------------------------------------------------------------------- /javascript/app/components/paginated-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/paginated-list.js -------------------------------------------------------------------------------- /javascript/app/components/resizable-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/resizable-panel.js -------------------------------------------------------------------------------- /javascript/app/components/text-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/text-file.js -------------------------------------------------------------------------------- /javascript/app/components/type-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/type-component.js -------------------------------------------------------------------------------- /javascript/app/components/type-signature-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/type-signature-text.js -------------------------------------------------------------------------------- /javascript/app/components/type-signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/components/type-signature.js -------------------------------------------------------------------------------- /javascript/app/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/controllers/application.js -------------------------------------------------------------------------------- /javascript/app/controllers/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/controllers/package.js -------------------------------------------------------------------------------- /javascript/app/controllers/package/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/controllers/package/index.js -------------------------------------------------------------------------------- /javascript/app/controllers/package/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/controllers/package/search.js -------------------------------------------------------------------------------- /javascript/app/controllers/package/show/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/controllers/package/show/file.js -------------------------------------------------------------------------------- /javascript/app/controllers/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/controllers/packages.js -------------------------------------------------------------------------------- /javascript/app/controllers/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/controllers/search.js -------------------------------------------------------------------------------- /javascript/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/index.html -------------------------------------------------------------------------------- /javascript/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/router.js -------------------------------------------------------------------------------- /javascript/app/routes/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/routes/application.js -------------------------------------------------------------------------------- /javascript/app/routes/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/routes/package.js -------------------------------------------------------------------------------- /javascript/app/routes/package/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/routes/package/index.js -------------------------------------------------------------------------------- /javascript/app/routes/package/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/routes/package/search.js -------------------------------------------------------------------------------- /javascript/app/routes/package/show/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/routes/package/show/file.js -------------------------------------------------------------------------------- /javascript/app/routes/package/show/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/routes/package/show/index.js -------------------------------------------------------------------------------- /javascript/app/routes/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/routes/packages.js -------------------------------------------------------------------------------- /javascript/app/routes/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/routes/search.js -------------------------------------------------------------------------------- /javascript/app/services/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/services/settings.js -------------------------------------------------------------------------------- /javascript/app/services/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/services/store.js -------------------------------------------------------------------------------- /javascript/app/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/styles/app.scss -------------------------------------------------------------------------------- /javascript/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/application.hbs -------------------------------------------------------------------------------- /javascript/app/templates/bad-url.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/bad-url.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/app/templates/components/bottom-panel.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/bottom-panel.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/expression-info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/expression-info.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/file-tree.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/file-tree.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/haskell-module.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/haskell-module.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/identifier-info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/identifier-info.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/identifier-name.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/identifier-name.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/infinite-list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/infinite-list.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/info-window.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/info-window.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/input-with-autocomplete.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/input-with-autocomplete.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/instance-info.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/instance-info.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/paginated-list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/paginated-list.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/resizable-panel.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/resizable-panel.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/text-file.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/text-file.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/type-component.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/type-component.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/type-signature-text.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/type-signature-text.hbs -------------------------------------------------------------------------------- /javascript/app/templates/components/type-signature.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/components/type-signature.hbs -------------------------------------------------------------------------------- /javascript/app/templates/package.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/package.hbs -------------------------------------------------------------------------------- /javascript/app/templates/package/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/package/index.hbs -------------------------------------------------------------------------------- /javascript/app/templates/package/search.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/package/search.hbs -------------------------------------------------------------------------------- /javascript/app/templates/package/show.hbs: -------------------------------------------------------------------------------- 1 | {{outlet}} 2 | -------------------------------------------------------------------------------- /javascript/app/templates/package/show/file.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/package/show/file.hbs -------------------------------------------------------------------------------- /javascript/app/templates/packages.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/packages.hbs -------------------------------------------------------------------------------- /javascript/app/templates/search.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/templates/search.hbs -------------------------------------------------------------------------------- /javascript/app/utils/api-urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/utils/api-urls.js -------------------------------------------------------------------------------- /javascript/app/utils/color-themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/utils/color-themes.js -------------------------------------------------------------------------------- /javascript/app/utils/go-to-definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/utils/go-to-definition.js -------------------------------------------------------------------------------- /javascript/app/utils/language-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/utils/language-extensions.js -------------------------------------------------------------------------------- /javascript/app/utils/line-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/app/utils/line-selection.js -------------------------------------------------------------------------------- /javascript/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/bower.json -------------------------------------------------------------------------------- /javascript/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/config/environment.js -------------------------------------------------------------------------------- /javascript/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/config/targets.js -------------------------------------------------------------------------------- /javascript/ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/ember-cli-build.js -------------------------------------------------------------------------------- /javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/package.json -------------------------------------------------------------------------------- /javascript/public/assets/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/public/assets/32px.png -------------------------------------------------------------------------------- /javascript/public/assets/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/public/assets/40px.png -------------------------------------------------------------------------------- /javascript/public/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/public/assets/favicon.ico -------------------------------------------------------------------------------- /javascript/public/assets/haskell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/public/assets/haskell.ico -------------------------------------------------------------------------------- /javascript/public/assets/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/public/assets/throbber.gif -------------------------------------------------------------------------------- /javascript/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /javascript/release/assets/32px-eebaf260766f5e0e773f53d3ea4f3e4d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/assets/32px-eebaf260766f5e0e773f53d3ea4f3e4d.png -------------------------------------------------------------------------------- /javascript/release/assets/40px-51286e68b083696edaf4f9fc577e2a2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/assets/40px-51286e68b083696edaf4f9fc577e2a2d.png -------------------------------------------------------------------------------- /javascript/release/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/assets/favicon.ico -------------------------------------------------------------------------------- /javascript/release/assets/haskell-code-explorer-3325784c864ca6662b97be678eeea861.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/assets/haskell-code-explorer-3325784c864ca6662b97be678eeea861.js -------------------------------------------------------------------------------- /javascript/release/assets/haskell-code-explorer-717832df8786392c9b8a9bd8010463d2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/assets/haskell-code-explorer-717832df8786392c9b8a9bd8010463d2.css -------------------------------------------------------------------------------- /javascript/release/assets/haskell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/assets/haskell.ico -------------------------------------------------------------------------------- /javascript/release/assets/throbber-62be6ed2b189444b472b8000dc187240.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/assets/throbber-62be6ed2b189444b472b8000dc187240.gif -------------------------------------------------------------------------------- /javascript/release/assets/vendor-b97a1e7d03d00bb4514dc45da44b51ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/assets/vendor-b97a1e7d03d00bb4514dc45da44b51ff.js -------------------------------------------------------------------------------- /javascript/release/assets/vendor-c68699fa3ef851ebff1b584737d944c2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/assets/vendor-c68699fa3ef851ebff1b584737d944c2.css -------------------------------------------------------------------------------- /javascript/release/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/release/index.html -------------------------------------------------------------------------------- /javascript/release/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /javascript/server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/server/.eslintrc.js -------------------------------------------------------------------------------- /javascript/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/server/index.js -------------------------------------------------------------------------------- /javascript/server/mocks/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/server/mocks/packages.js -------------------------------------------------------------------------------- /javascript/testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/testem.js -------------------------------------------------------------------------------- /javascript/tests/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/tests/.eslintrc.js -------------------------------------------------------------------------------- /javascript/tests/acceptance/haskell-module-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/tests/acceptance/haskell-module-test.js -------------------------------------------------------------------------------- /javascript/tests/acceptance/package-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/tests/acceptance/package-test.js -------------------------------------------------------------------------------- /javascript/tests/acceptance/packages-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/tests/acceptance/packages-test.js -------------------------------------------------------------------------------- /javascript/tests/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/tests/index.html -------------------------------------------------------------------------------- /javascript/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/tests/integration/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/tests/test-helper.js -------------------------------------------------------------------------------- /javascript/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/AUTHORS.txt -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/LICENSE.txt -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/external/jquery/jquery.js -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/index.html -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.css -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.js -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.min.css -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.min.js -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.structure.css -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.theme.css -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /javascript/vendor/jquery-ui-1.12.1.custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/javascript/vendor/jquery-ui-1.12.1.custom/package.json -------------------------------------------------------------------------------- /src/HaskellCodeExplorer/AST/RenamedSource.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/src/HaskellCodeExplorer/AST/RenamedSource.hs -------------------------------------------------------------------------------- /src/HaskellCodeExplorer/AST/TypecheckedSource.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/src/HaskellCodeExplorer/AST/TypecheckedSource.hs -------------------------------------------------------------------------------- /src/HaskellCodeExplorer/GhcUtils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/src/HaskellCodeExplorer/GhcUtils.hs -------------------------------------------------------------------------------- /src/HaskellCodeExplorer/ModuleInfo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/src/HaskellCodeExplorer/ModuleInfo.hs -------------------------------------------------------------------------------- /src/HaskellCodeExplorer/PackageInfo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/src/HaskellCodeExplorer/PackageInfo.hs -------------------------------------------------------------------------------- /src/HaskellCodeExplorer/Preprocessor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/src/HaskellCodeExplorer/Preprocessor.hs -------------------------------------------------------------------------------- /src/HaskellCodeExplorer/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/src/HaskellCodeExplorer/Types.hs -------------------------------------------------------------------------------- /stack-8.0.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/stack-8.0.2.yaml -------------------------------------------------------------------------------- /stack-8.2.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/stack-8.2.2.yaml -------------------------------------------------------------------------------- /stack-8.4.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/stack-8.4.3.yaml -------------------------------------------------------------------------------- /stack-8.4.4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/stack-8.4.4.yaml -------------------------------------------------------------------------------- /stack-8.6.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/stack-8.6.3.yaml -------------------------------------------------------------------------------- /stack-8.6.4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/stack-8.6.4.yaml -------------------------------------------------------------------------------- /stack-8.6.5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/stack-8.6.5.yaml -------------------------------------------------------------------------------- /stack-8.8.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/stack-8.8.3.yaml -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/Main.hs -------------------------------------------------------------------------------- /test/data/File.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/data/File.hs -------------------------------------------------------------------------------- /test/data/File1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/data/File1.hs -------------------------------------------------------------------------------- /test/data/File2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/data/File2.hs -------------------------------------------------------------------------------- /test/data/File3.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/data/File3.hs -------------------------------------------------------------------------------- /test/data/FileAfterPreprocessor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/data/FileAfterPreprocessor.hs -------------------------------------------------------------------------------- /test/test-package/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/test-package/.gitignore -------------------------------------------------------------------------------- /test/test-package/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /test/test-package/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/test-package/app/Main.hs -------------------------------------------------------------------------------- /test/test-package/src/Lib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/test-package/src/Lib.hs -------------------------------------------------------------------------------- /test/test-package/src/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/test-package/src/Types.hs -------------------------------------------------------------------------------- /test/test-package/stack-8.0.2.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-9.14 2 | -------------------------------------------------------------------------------- /test/test-package/stack-8.2.2.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-11.3 2 | -------------------------------------------------------------------------------- /test/test-package/stack-8.4.3.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-12.12 2 | -------------------------------------------------------------------------------- /test/test-package/stack-8.4.4.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-12.16 2 | -------------------------------------------------------------------------------- /test/test-package/stack-8.6.3.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-13.0 2 | -------------------------------------------------------------------------------- /test/test-package/stack-8.6.4.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-13.12 2 | -------------------------------------------------------------------------------- /test/test-package/stack-8.6.5.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-13.20 2 | -------------------------------------------------------------------------------- /test/test-package/stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-13.20 2 | -------------------------------------------------------------------------------- /test/test-package/test-package.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/test-package/test-package.cabal -------------------------------------------------------------------------------- /test/test-package/test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/test/test-package/test/Spec.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/.gitignore -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/.gitlab-ci.yml -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/.travis.yml -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/LICENSE -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/README.md -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/cabal-helper.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/cabal-helper.cabal -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/cabal.project: -------------------------------------------------------------------------------- 1 | packages: . 2 | 3 | -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/lib/Distribution/Helper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/lib/Distribution/Helper.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/bump.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/ci/build.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/print-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/ci/print-packages.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/retry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/ci/retry.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/steps/00-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/ci/steps/00-config.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/steps/05-print-packages.sh: -------------------------------------------------------------------------------- 1 | ../print-packages.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/steps/10-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/ci/steps/10-dependencies.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/steps/15-print-packages.sh: -------------------------------------------------------------------------------- 1 | ../print-packages.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/steps/20-sdist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/ci/steps/20-sdist.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/steps/30-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/ci/steps/30-build.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/ci/steps/40-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/ci/steps/40-test.sh -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/scripts/update-cabal-common-section-instantiations.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/scripts/update-cabal-common-section-instantiations.awk -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Compat/Environment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Compat/Environment.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Compat/ProgramDb.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Compat/ProgramDb.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Compat/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Compat/Version.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Compile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Compile.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Data.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Data.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Log.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Log.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Types.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Wrapper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Compiletime/Wrapper.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Runtime/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Runtime/Main.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Shared/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Shared/Common.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Shared/InterfaceTypes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Shared/InterfaceTypes.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/src/CabalHelper/Shared/Sandbox.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/src/CabalHelper/Shared/Sandbox.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/CompileTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/CompileTest.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/GhcSession.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/GhcSession.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/bkpregex/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/bkpregex/bkpregex.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/bkpregex/bkpregex.cabal -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/bkpregex/regex-example/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/bkpregex/regex-example/Main.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/bkpregex/regex-indef/Regex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/bkpregex/regex-indef/Regex.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/bkpregex/regex-indef/Str.hsig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/bkpregex/regex-indef/Str.hsig -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/bkpregex/regex-types/Regex/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/bkpregex/regex-types/Regex/Types.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/bkpregex/str-impls/Str/ByteString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/bkpregex/str-impls/Str/ByteString.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/bkpregex/str-impls/Str/String.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/bkpregex/str-impls/Str/String.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/exeintlib/Exe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/exeintlib/Exe.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/exeintlib/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/exeintlib/exeintlib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/exeintlib/exeintlib.cabal -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/exeintlib/intlib/IntLib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/exeintlib/intlib/IntLib.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/exeintlib/lib/Lib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/exeintlib/lib/Lib.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/exelib/Exe.hs: -------------------------------------------------------------------------------- 1 | module Main where 2 | 3 | import Lib 4 | 5 | main = print foo 6 | -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/exelib/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/exelib/exelib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/exelib/exelib.cabal -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/exelib/lib/Lib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/exelib/lib/Lib.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/fliblib/FLib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/fliblib/FLib.hs -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/fliblib/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/fliblib/fliblib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/fliblib/fliblib.cabal -------------------------------------------------------------------------------- /vendor/cabal-helper-0.8.1.2/tests/fliblib/lib/Lib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexwl/haskell-code-explorer/HEAD/vendor/cabal-helper-0.8.1.2/tests/fliblib/lib/Lib.hs --------------------------------------------------------------------------------