├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING ├── INSTALL ├── LICENSE ├── NEWS ├── README ├── TODO ├── _file ├── .gitignore ├── LICENSE ├── README.md ├── elm.json └── src │ └── File │ ├── Download.elm │ └── Select.elm ├── another-elm ├── browser ├── .gitignore ├── LICENSE ├── README.md ├── elm.json ├── examples │ ├── README.md │ ├── elm.json │ └── src │ │ ├── Drag.elm │ │ └── Url.elm ├── notes │ ├── capture-vs-bubble.md │ ├── chat.svg │ ├── getElement.svg │ ├── getViewport.svg │ ├── getViewportOf.svg │ ├── keyboard.md │ ├── navigation-in-elements.md │ └── properties-vs-attributes.md ├── notsrc │ └── Debugger │ │ ├── Expando.elm │ │ ├── History.elm │ │ ├── Main.elm │ │ ├── Metadata.elm │ │ ├── Overlay.elm │ │ └── Report.elm └── src │ ├── Browser.elm │ ├── Browser │ ├── Dom.elm │ ├── Events.elm │ ├── Internal.elm │ └── Navigation.elm │ ├── Elm │ └── Kernel │ │ ├── Browser.js │ │ ├── Debugger.notjs │ │ └── Url.js │ ├── Url.elm │ └── Url │ ├── Builder.elm │ ├── Parser.elm │ └── Parser │ ├── Internal.elm │ └── Query.elm ├── core ├── README.md ├── elm.json └── src │ ├── Array.elm │ ├── Basics.elm │ ├── Bitwise.elm │ ├── Bytes.elm │ ├── Bytes │ ├── Decode.elm │ └── Encode.elm │ ├── Char.elm │ ├── Debug.elm │ ├── Dict.elm │ ├── Elm │ ├── JsArray.elm │ └── Kernel │ │ ├── Basics.js │ │ ├── Bytes.js │ │ ├── Channel.js │ │ ├── Char.js │ │ ├── Debug.js │ │ ├── File.js │ │ ├── Http.js │ │ ├── JsArray.js │ │ ├── List.js │ │ ├── Parser.js │ │ ├── Platform.js │ │ ├── Scheduler.js │ │ ├── String.js │ │ ├── Time.js │ │ └── Utils.js │ ├── File.elm │ ├── Http.elm │ ├── HttpV1.elm │ ├── HttpV1 │ └── Internal.elm │ ├── List.elm │ ├── Maybe.elm │ ├── Parser.elm │ ├── Parser │ └── Advanced.elm │ ├── Platform.elm │ ├── Platform │ ├── Cmd.elm │ ├── Scheduler.elm │ ├── Sub.elm │ └── Unstable │ │ ├── Channel.elm │ │ ├── Effect.elm │ │ ├── Effect2.elm │ │ ├── Impure.elm │ │ ├── Iterable.elm │ │ ├── Scheduler.elm │ │ ├── SubManager.elm │ │ └── Task.elm │ ├── Process.elm │ ├── Random.elm │ ├── Result.elm │ ├── Set.elm │ ├── String.elm │ ├── Task.elm │ ├── Time.elm │ └── Tuple.elm ├── html ├── .gitignore ├── LICENSE ├── README.md ├── elm.json └── src │ ├── Elm │ └── Kernel │ │ └── VirtualDom.js │ ├── Html.elm │ ├── Html │ ├── Attributes.elm │ ├── Events.elm │ ├── Keyed.elm │ └── Lazy.elm │ └── VirtualDom.elm ├── init.py ├── json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── elm.json └── src │ ├── Elm │ └── Kernel │ │ └── Json.js │ └── Json │ ├── Decode.elm │ ├── Encode.elm │ └── Internal.elm ├── make-pkg.sh ├── markdown ├── .gitignore ├── LICENSE ├── README.md ├── elm.json └── src │ ├── Elm │ └── Kernel │ │ └── Markdown.js │ └── Markdown.elm ├── package.json ├── svg ├── .gitignore ├── LICENSE ├── README.md ├── elm.json ├── examples │ └── Logo.elm └── src │ ├── Svg.elm │ └── Svg │ ├── Attributes.elm │ ├── Events.elm │ ├── Keyed.elm │ └── Lazy.elm ├── test ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── PUBLISHING.md ├── README.md ├── benchmarks │ ├── Main.elm │ ├── README.md │ ├── Snippets.elm │ └── elm-package.json ├── elm.json ├── package.json ├── src │ ├── Elm │ │ └── Kernel │ │ │ ├── HtmlAsJson.js │ │ │ └── Test.js │ ├── Expect.elm │ ├── Float.elm │ ├── Fuzz.elm │ ├── Fuzz │ │ └── Internal.elm │ ├── Lazy.elm │ ├── Lazy │ │ └── List.elm │ ├── MicroRandomExtra.elm │ ├── RoseTree.elm │ ├── Shrink.elm │ ├── Test.elm │ └── Test │ │ ├── Expectation.elm │ │ ├── Fuzz.elm │ │ ├── Html │ │ ├── Descendant.elm │ │ ├── Event.elm │ │ ├── Internal │ │ │ ├── ElmHtml │ │ │ │ ├── Constants.elm │ │ │ │ ├── Helpers.elm │ │ │ │ ├── InternalTypes.elm │ │ │ │ ├── Markdown.elm │ │ │ │ ├── Query.elm │ │ │ │ └── ToString.elm │ │ │ └── Inert.elm │ │ ├── Query.elm │ │ ├── Query │ │ │ └── Internal.elm │ │ ├── Selector.elm │ │ └── Selector │ │ │ └── Internal.elm │ │ ├── Internal.elm │ │ ├── Internal │ │ └── KernelConstants.elm │ │ ├── Runner.elm │ │ └── Runner │ │ └── Failure.elm └── tests │ ├── .gitignore │ ├── MakeTestRegistry.hs │ ├── README.md │ ├── elm.json │ ├── src │ ├── FloatWithinTests.elm │ ├── FuzzerTests.elm │ ├── Helpers.elm │ ├── Main.elm │ ├── Runner │ │ ├── Log.elm │ │ ├── String.elm │ │ └── String │ │ │ └── Format.elm │ ├── RunnerTests.elm │ ├── SeedTests.elm │ ├── ShrinkTests.elm │ ├── Test │ │ └── Html │ │ │ ├── EventTests.elm │ │ │ ├── ExampleApp.elm │ │ │ ├── ExampleAppTests.elm │ │ │ ├── Query │ │ │ ├── CustomNodeTests.elm │ │ │ └── MarkdownTests.elm │ │ │ ├── QueryTests.elm │ │ │ └── SelectorTests.elm │ └── Tests.elm │ ├── test.sh │ └── versions.dat ├── tests ├── .gitignore ├── browser-tests │ ├── .gitignore │ ├── AllHtmlEvents.elm │ ├── elm.json │ └── index.test.js ├── check-kernel-imports.js ├── elm.json ├── generate-globals.py ├── src │ └── empty ├── sscce-tests │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── bors.toml │ ├── config.json │ ├── embed-assets │ │ ├── cert.pem │ │ ├── elm-serverless │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── demo │ │ │ │ ├── README.md │ │ │ │ ├── elm.json │ │ │ │ ├── serverless.yml │ │ │ │ ├── src │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── API.elm │ │ │ │ │ │ └── api.js │ │ │ │ │ ├── Forms │ │ │ │ │ │ ├── API.elm │ │ │ │ │ │ └── api.js │ │ │ │ │ ├── Hello │ │ │ │ │ │ ├── API.elm │ │ │ │ │ │ └── api.js │ │ │ │ │ ├── Interop │ │ │ │ │ │ ├── API.elm │ │ │ │ │ │ └── api.js │ │ │ │ │ ├── Logging.elm │ │ │ │ │ ├── Pipelines │ │ │ │ │ │ ├── API.elm │ │ │ │ │ │ └── api.js │ │ │ │ │ ├── Quoted │ │ │ │ │ │ ├── API.elm │ │ │ │ │ │ ├── Middleware.elm │ │ │ │ │ │ ├── Models │ │ │ │ │ │ │ └── Quote.elm │ │ │ │ │ │ ├── Pipelines │ │ │ │ │ │ │ └── Quote.elm │ │ │ │ │ │ ├── Route.elm │ │ │ │ │ │ ├── Types.elm │ │ │ │ │ │ └── api.js │ │ │ │ │ ├── Routing │ │ │ │ │ │ ├── API.elm │ │ │ │ │ │ └── api.js │ │ │ │ │ └── SideEffects │ │ │ │ │ │ ├── API.elm │ │ │ │ │ │ └── api.js │ │ │ │ └── webpack.config.js │ │ │ ├── elm.json │ │ │ ├── es-logo-small.png │ │ │ ├── es-logo.png │ │ │ ├── package.json │ │ │ ├── scripts │ │ │ │ ├── ci-elm-hack.sh │ │ │ │ ├── stop-test-server.js │ │ │ │ └── test-server.js │ │ │ ├── src-bridge │ │ │ │ ├── index.js │ │ │ │ ├── logger.js │ │ │ │ ├── normalize-headers.js │ │ │ │ ├── pool.js │ │ │ │ ├── request-handler.js │ │ │ │ ├── response-handler.js │ │ │ │ ├── validate.js │ │ │ │ └── xmlhttprequest.js │ │ │ ├── src │ │ │ │ ├── Serverless.elm │ │ │ │ └── Serverless │ │ │ │ │ ├── Conn.elm │ │ │ │ │ ├── Conn │ │ │ │ │ ├── Body.elm │ │ │ │ │ ├── Charset.elm │ │ │ │ │ ├── IpAddress.elm │ │ │ │ │ ├── KeyValueList.elm │ │ │ │ │ ├── Pool.elm │ │ │ │ │ ├── Request.elm │ │ │ │ │ └── Response.elm │ │ │ │ │ ├── Cors.elm │ │ │ │ │ └── Plug.elm │ │ │ ├── test │ │ │ │ ├── bridge │ │ │ │ │ ├── bridge-spec.js │ │ │ │ │ ├── normalize-headers-spec.js │ │ │ │ │ ├── pool-spec.js │ │ │ │ │ ├── request-handler-spec.js │ │ │ │ │ ├── response-handler-spec.js │ │ │ │ │ ├── spy-logger.js │ │ │ │ │ └── validate-spec.js │ │ │ │ ├── demo │ │ │ │ │ ├── config-spec.js │ │ │ │ │ ├── forms-spec.js │ │ │ │ │ ├── hello-spec.js │ │ │ │ │ ├── interop-spec.js │ │ │ │ │ ├── pipelines-spec.js │ │ │ │ │ ├── quoted-spec.js │ │ │ │ │ ├── request.js │ │ │ │ │ ├── routing-spec.js │ │ │ │ │ └── side-effects-spec.js │ │ │ │ └── mocha.opts │ │ │ └── tests │ │ │ │ ├── Serverless │ │ │ │ ├── Conn │ │ │ │ │ ├── DecodeTests.elm │ │ │ │ │ ├── EncodeTests.elm │ │ │ │ │ ├── Fuzz.elm │ │ │ │ │ ├── PoolTests.elm │ │ │ │ │ └── Test.elm │ │ │ │ └── ConnTests.elm │ │ │ │ ├── TestHelpers.elm │ │ │ │ ├── elm-doc-test.json │ │ │ │ ├── elm-verify-examples.json │ │ │ │ └── elm.json.elmupgrade │ │ ├── key.key │ │ └── run.js │ ├── exit-codes.md │ ├── src │ │ ├── lib │ │ │ ├── cli.rs │ │ │ ├── config.rs │ │ │ ├── find_suites.rs │ │ │ ├── formatting.rs │ │ │ ├── mod.rs │ │ │ ├── server_pool.rs │ │ │ └── suite.rs │ │ └── main.rs │ ├── suite │ │ ├── compiler-tests │ │ │ └── lambda-empty-record │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ ├── debug │ │ │ ├── equal-fails-with-fn │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ ├── half-baked-log │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ └── log │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ ├── echo │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── hello-world │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── http │ │ │ ├── hello-json │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ └── hello-world │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ ├── if-then-else │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── issues │ │ │ ├── 1246 │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ ├── 1516 │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ ├── 1685 │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ ├── 1722 │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ ├── 1753 │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ ├── 1776 │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ ├── 1813 │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ ├── 1916 │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ └── 1964 │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ ├── kill │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── map-cmd │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── module-name-clash │ │ │ ├── Main.elm │ │ │ ├── Module1.elm │ │ │ ├── README.md │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── multiple-processes │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── multiple-subscriptions │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── numeric-package │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── parser │ │ │ ├── README │ │ │ ├── back-slash-char │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ └── nested-module-record │ │ │ │ ├── Main.elm │ │ │ │ ├── Nested │ │ │ │ └── Module.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ ├── random │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── sleep │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── subscription-order │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ ├── time │ │ │ ├── every │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ ├── here │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ │ └── zone-name │ │ │ │ ├── Main.elm │ │ │ │ ├── elm.json │ │ │ │ └── output.json │ │ ├── update-loop │ │ │ ├── Main.elm │ │ │ ├── elm.json │ │ │ └── output.json │ │ └── util │ │ │ └── Util │ │ │ ├── Cmds.elm │ │ │ ├── Http.elm │ │ │ ├── Programs.elm │ │ │ └── Subs.elm │ └── update-json.js ├── tests │ ├── FromElmTest │ │ ├── Fuzz.elm │ │ ├── Fuzz │ │ │ └── Internal.elm │ │ ├── Lazy.elm │ │ ├── Lazy │ │ │ └── List.elm │ │ ├── MicroRandomExtra.elm │ │ └── RoseTree.elm │ └── Test │ │ ├── Array.elm │ │ ├── Basics.elm │ │ ├── Bitwise.elm │ │ ├── Bytes.elm │ │ ├── Char.elm │ │ ├── CodeGen.elm │ │ ├── Dict.elm │ │ ├── Equality.elm │ │ ├── Html │ │ └── Events.elm │ │ ├── Json.elm │ │ ├── List.elm │ │ ├── Maybe.elm │ │ ├── Result.elm │ │ ├── Set.elm │ │ ├── String.elm │ │ └── Tuple.elm └── vdom-tests │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.json │ ├── LICENSE │ ├── bin.js │ ├── elm-tooling.json │ ├── elm.json │ ├── index.html │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── patch.js │ ├── serve.json │ ├── src │ ├── ElmUi.elm │ ├── KeyList.elm │ ├── Main.elm │ ├── OnlyHtml.elm │ ├── Sandbox.elm │ └── SandboxSimple.elm │ └── tests │ ├── elm │ ├── App.elm │ └── KitchenSink.elm │ ├── helpers.js │ ├── helpers.test.js │ └── index.test.js └── x.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff/ 2 | node_modules/ 3 | /package-lock.json 4 | -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/TODO -------------------------------------------------------------------------------- /_file/.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff -------------------------------------------------------------------------------- /_file/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/_file/LICENSE -------------------------------------------------------------------------------- /_file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/_file/README.md -------------------------------------------------------------------------------- /_file/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/_file/elm.json -------------------------------------------------------------------------------- /_file/src/File/Download.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/_file/src/File/Download.elm -------------------------------------------------------------------------------- /_file/src/File/Select.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/_file/src/File/Select.elm -------------------------------------------------------------------------------- /another-elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/another-elm -------------------------------------------------------------------------------- /browser/.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff -------------------------------------------------------------------------------- /browser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/LICENSE -------------------------------------------------------------------------------- /browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/README.md -------------------------------------------------------------------------------- /browser/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/elm.json -------------------------------------------------------------------------------- /browser/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/examples/README.md -------------------------------------------------------------------------------- /browser/examples/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/examples/elm.json -------------------------------------------------------------------------------- /browser/examples/src/Drag.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/examples/src/Drag.elm -------------------------------------------------------------------------------- /browser/examples/src/Url.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/examples/src/Url.elm -------------------------------------------------------------------------------- /browser/notes/capture-vs-bubble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notes/capture-vs-bubble.md -------------------------------------------------------------------------------- /browser/notes/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notes/chat.svg -------------------------------------------------------------------------------- /browser/notes/getElement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notes/getElement.svg -------------------------------------------------------------------------------- /browser/notes/getViewport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notes/getViewport.svg -------------------------------------------------------------------------------- /browser/notes/getViewportOf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notes/getViewportOf.svg -------------------------------------------------------------------------------- /browser/notes/keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notes/keyboard.md -------------------------------------------------------------------------------- /browser/notes/navigation-in-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notes/navigation-in-elements.md -------------------------------------------------------------------------------- /browser/notes/properties-vs-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notes/properties-vs-attributes.md -------------------------------------------------------------------------------- /browser/notsrc/Debugger/Expando.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notsrc/Debugger/Expando.elm -------------------------------------------------------------------------------- /browser/notsrc/Debugger/History.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notsrc/Debugger/History.elm -------------------------------------------------------------------------------- /browser/notsrc/Debugger/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notsrc/Debugger/Main.elm -------------------------------------------------------------------------------- /browser/notsrc/Debugger/Metadata.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notsrc/Debugger/Metadata.elm -------------------------------------------------------------------------------- /browser/notsrc/Debugger/Overlay.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notsrc/Debugger/Overlay.elm -------------------------------------------------------------------------------- /browser/notsrc/Debugger/Report.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/notsrc/Debugger/Report.elm -------------------------------------------------------------------------------- /browser/src/Browser.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Browser.elm -------------------------------------------------------------------------------- /browser/src/Browser/Dom.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Browser/Dom.elm -------------------------------------------------------------------------------- /browser/src/Browser/Events.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Browser/Events.elm -------------------------------------------------------------------------------- /browser/src/Browser/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Browser/Internal.elm -------------------------------------------------------------------------------- /browser/src/Browser/Navigation.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Browser/Navigation.elm -------------------------------------------------------------------------------- /browser/src/Elm/Kernel/Browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Elm/Kernel/Browser.js -------------------------------------------------------------------------------- /browser/src/Elm/Kernel/Debugger.notjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Elm/Kernel/Debugger.notjs -------------------------------------------------------------------------------- /browser/src/Elm/Kernel/Url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Elm/Kernel/Url.js -------------------------------------------------------------------------------- /browser/src/Url.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Url.elm -------------------------------------------------------------------------------- /browser/src/Url/Builder.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Url/Builder.elm -------------------------------------------------------------------------------- /browser/src/Url/Parser.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Url/Parser.elm -------------------------------------------------------------------------------- /browser/src/Url/Parser/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Url/Parser/Internal.elm -------------------------------------------------------------------------------- /browser/src/Url/Parser/Query.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/browser/src/Url/Parser/Query.elm -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/README.md -------------------------------------------------------------------------------- /core/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/elm.json -------------------------------------------------------------------------------- /core/src/Array.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Array.elm -------------------------------------------------------------------------------- /core/src/Basics.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Basics.elm -------------------------------------------------------------------------------- /core/src/Bitwise.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Bitwise.elm -------------------------------------------------------------------------------- /core/src/Bytes.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Bytes.elm -------------------------------------------------------------------------------- /core/src/Bytes/Decode.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Bytes/Decode.elm -------------------------------------------------------------------------------- /core/src/Bytes/Encode.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Bytes/Encode.elm -------------------------------------------------------------------------------- /core/src/Char.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Char.elm -------------------------------------------------------------------------------- /core/src/Debug.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Debug.elm -------------------------------------------------------------------------------- /core/src/Dict.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Dict.elm -------------------------------------------------------------------------------- /core/src/Elm/JsArray.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/JsArray.elm -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Basics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Basics.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Bytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Bytes.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Channel.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Char.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Char.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Debug.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/File.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Http.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/JsArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/JsArray.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/List.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Parser.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Platform.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Scheduler.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/String.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/String.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Time.js -------------------------------------------------------------------------------- /core/src/Elm/Kernel/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Elm/Kernel/Utils.js -------------------------------------------------------------------------------- /core/src/File.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/File.elm -------------------------------------------------------------------------------- /core/src/Http.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Http.elm -------------------------------------------------------------------------------- /core/src/HttpV1.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/HttpV1.elm -------------------------------------------------------------------------------- /core/src/HttpV1/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/HttpV1/Internal.elm -------------------------------------------------------------------------------- /core/src/List.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/List.elm -------------------------------------------------------------------------------- /core/src/Maybe.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Maybe.elm -------------------------------------------------------------------------------- /core/src/Parser.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Parser.elm -------------------------------------------------------------------------------- /core/src/Parser/Advanced.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Parser/Advanced.elm -------------------------------------------------------------------------------- /core/src/Platform.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform.elm -------------------------------------------------------------------------------- /core/src/Platform/Cmd.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Cmd.elm -------------------------------------------------------------------------------- /core/src/Platform/Scheduler.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Scheduler.elm -------------------------------------------------------------------------------- /core/src/Platform/Sub.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Sub.elm -------------------------------------------------------------------------------- /core/src/Platform/Unstable/Channel.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Unstable/Channel.elm -------------------------------------------------------------------------------- /core/src/Platform/Unstable/Effect.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Unstable/Effect.elm -------------------------------------------------------------------------------- /core/src/Platform/Unstable/Effect2.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Unstable/Effect2.elm -------------------------------------------------------------------------------- /core/src/Platform/Unstable/Impure.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Unstable/Impure.elm -------------------------------------------------------------------------------- /core/src/Platform/Unstable/Iterable.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Unstable/Iterable.elm -------------------------------------------------------------------------------- /core/src/Platform/Unstable/Scheduler.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Unstable/Scheduler.elm -------------------------------------------------------------------------------- /core/src/Platform/Unstable/SubManager.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Unstable/SubManager.elm -------------------------------------------------------------------------------- /core/src/Platform/Unstable/Task.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Platform/Unstable/Task.elm -------------------------------------------------------------------------------- /core/src/Process.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Process.elm -------------------------------------------------------------------------------- /core/src/Random.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Random.elm -------------------------------------------------------------------------------- /core/src/Result.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Result.elm -------------------------------------------------------------------------------- /core/src/Set.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Set.elm -------------------------------------------------------------------------------- /core/src/String.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/String.elm -------------------------------------------------------------------------------- /core/src/Task.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Task.elm -------------------------------------------------------------------------------- /core/src/Time.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Time.elm -------------------------------------------------------------------------------- /core/src/Tuple.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/core/src/Tuple.elm -------------------------------------------------------------------------------- /html/.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff -------------------------------------------------------------------------------- /html/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/LICENSE -------------------------------------------------------------------------------- /html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/README.md -------------------------------------------------------------------------------- /html/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/elm.json -------------------------------------------------------------------------------- /html/src/Elm/Kernel/VirtualDom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/src/Elm/Kernel/VirtualDom.js -------------------------------------------------------------------------------- /html/src/Html.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/src/Html.elm -------------------------------------------------------------------------------- /html/src/Html/Attributes.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/src/Html/Attributes.elm -------------------------------------------------------------------------------- /html/src/Html/Events.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/src/Html/Events.elm -------------------------------------------------------------------------------- /html/src/Html/Keyed.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/src/Html/Keyed.elm -------------------------------------------------------------------------------- /html/src/Html/Lazy.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/src/Html/Lazy.elm -------------------------------------------------------------------------------- /html/src/VirtualDom.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/html/src/VirtualDom.elm -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/init.py -------------------------------------------------------------------------------- /json/.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff/ 2 | /artifacts.dat 3 | /docs.json 4 | /tests/.elm 5 | -------------------------------------------------------------------------------- /json/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/json/.travis.yml -------------------------------------------------------------------------------- /json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/json/LICENSE -------------------------------------------------------------------------------- /json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/json/README.md -------------------------------------------------------------------------------- /json/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/json/elm.json -------------------------------------------------------------------------------- /json/src/Elm/Kernel/Json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/json/src/Elm/Kernel/Json.js -------------------------------------------------------------------------------- /json/src/Json/Decode.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/json/src/Json/Decode.elm -------------------------------------------------------------------------------- /json/src/Json/Encode.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/json/src/Json/Encode.elm -------------------------------------------------------------------------------- /json/src/Json/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/json/src/Json/Internal.elm -------------------------------------------------------------------------------- /make-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/make-pkg.sh -------------------------------------------------------------------------------- /markdown/.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff -------------------------------------------------------------------------------- /markdown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/markdown/LICENSE -------------------------------------------------------------------------------- /markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/markdown/README.md -------------------------------------------------------------------------------- /markdown/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/markdown/elm.json -------------------------------------------------------------------------------- /markdown/src/Elm/Kernel/Markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/markdown/src/Elm/Kernel/Markdown.js -------------------------------------------------------------------------------- /markdown/src/Markdown.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/markdown/src/Markdown.elm -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/package.json -------------------------------------------------------------------------------- /svg/.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff -------------------------------------------------------------------------------- /svg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/svg/LICENSE -------------------------------------------------------------------------------- /svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/svg/README.md -------------------------------------------------------------------------------- /svg/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/svg/elm.json -------------------------------------------------------------------------------- /svg/examples/Logo.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/svg/examples/Logo.elm -------------------------------------------------------------------------------- /svg/src/Svg.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/svg/src/Svg.elm -------------------------------------------------------------------------------- /svg/src/Svg/Attributes.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/svg/src/Svg/Attributes.elm -------------------------------------------------------------------------------- /svg/src/Svg/Events.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/svg/src/Svg/Events.elm -------------------------------------------------------------------------------- /svg/src/Svg/Keyed.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/svg/src/Svg/Keyed.elm -------------------------------------------------------------------------------- /svg/src/Svg/Lazy.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/svg/src/Svg/Lazy.elm -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/.travis.yml -------------------------------------------------------------------------------- /test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/CHANGELOG.md -------------------------------------------------------------------------------- /test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/LICENSE -------------------------------------------------------------------------------- /test/PUBLISHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/PUBLISHING.md -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/README.md -------------------------------------------------------------------------------- /test/benchmarks/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/benchmarks/Main.elm -------------------------------------------------------------------------------- /test/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/benchmarks/README.md -------------------------------------------------------------------------------- /test/benchmarks/Snippets.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/benchmarks/Snippets.elm -------------------------------------------------------------------------------- /test/benchmarks/elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/benchmarks/elm-package.json -------------------------------------------------------------------------------- /test/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/elm.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/package.json -------------------------------------------------------------------------------- /test/src/Elm/Kernel/HtmlAsJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Elm/Kernel/HtmlAsJson.js -------------------------------------------------------------------------------- /test/src/Elm/Kernel/Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Elm/Kernel/Test.js -------------------------------------------------------------------------------- /test/src/Expect.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Expect.elm -------------------------------------------------------------------------------- /test/src/Float.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Float.elm -------------------------------------------------------------------------------- /test/src/Fuzz.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Fuzz.elm -------------------------------------------------------------------------------- /test/src/Fuzz/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Fuzz/Internal.elm -------------------------------------------------------------------------------- /test/src/Lazy.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Lazy.elm -------------------------------------------------------------------------------- /test/src/Lazy/List.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Lazy/List.elm -------------------------------------------------------------------------------- /test/src/MicroRandomExtra.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/MicroRandomExtra.elm -------------------------------------------------------------------------------- /test/src/RoseTree.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/RoseTree.elm -------------------------------------------------------------------------------- /test/src/Shrink.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Shrink.elm -------------------------------------------------------------------------------- /test/src/Test.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test.elm -------------------------------------------------------------------------------- /test/src/Test/Expectation.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Expectation.elm -------------------------------------------------------------------------------- /test/src/Test/Fuzz.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Fuzz.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Descendant.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Descendant.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Event.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Event.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Internal/ElmHtml/Constants.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Internal/ElmHtml/Constants.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Internal/ElmHtml/Helpers.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Internal/ElmHtml/Helpers.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Internal/ElmHtml/InternalTypes.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Internal/ElmHtml/InternalTypes.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Internal/ElmHtml/Markdown.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Internal/ElmHtml/Markdown.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Internal/ElmHtml/Query.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Internal/ElmHtml/Query.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Internal/ElmHtml/ToString.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Internal/ElmHtml/ToString.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Internal/Inert.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Internal/Inert.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Query.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Query.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Query/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Query/Internal.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Selector.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Selector.elm -------------------------------------------------------------------------------- /test/src/Test/Html/Selector/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Html/Selector/Internal.elm -------------------------------------------------------------------------------- /test/src/Test/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Internal.elm -------------------------------------------------------------------------------- /test/src/Test/Internal/KernelConstants.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Internal/KernelConstants.elm -------------------------------------------------------------------------------- /test/src/Test/Runner.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Runner.elm -------------------------------------------------------------------------------- /test/src/Test/Runner/Failure.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/src/Test/Runner/Failure.elm -------------------------------------------------------------------------------- /test/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /elm.js 2 | /elm_home/ 3 | -------------------------------------------------------------------------------- /test/tests/MakeTestRegistry.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/MakeTestRegistry.hs -------------------------------------------------------------------------------- /test/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/README.md -------------------------------------------------------------------------------- /test/tests/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/elm.json -------------------------------------------------------------------------------- /test/tests/src/FloatWithinTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/FloatWithinTests.elm -------------------------------------------------------------------------------- /test/tests/src/FuzzerTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/FuzzerTests.elm -------------------------------------------------------------------------------- /test/tests/src/Helpers.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Helpers.elm -------------------------------------------------------------------------------- /test/tests/src/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Main.elm -------------------------------------------------------------------------------- /test/tests/src/Runner/Log.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Runner/Log.elm -------------------------------------------------------------------------------- /test/tests/src/Runner/String.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Runner/String.elm -------------------------------------------------------------------------------- /test/tests/src/Runner/String/Format.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Runner/String/Format.elm -------------------------------------------------------------------------------- /test/tests/src/RunnerTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/RunnerTests.elm -------------------------------------------------------------------------------- /test/tests/src/SeedTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/SeedTests.elm -------------------------------------------------------------------------------- /test/tests/src/ShrinkTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/ShrinkTests.elm -------------------------------------------------------------------------------- /test/tests/src/Test/Html/EventTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Test/Html/EventTests.elm -------------------------------------------------------------------------------- /test/tests/src/Test/Html/ExampleApp.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Test/Html/ExampleApp.elm -------------------------------------------------------------------------------- /test/tests/src/Test/Html/ExampleAppTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Test/Html/ExampleAppTests.elm -------------------------------------------------------------------------------- /test/tests/src/Test/Html/Query/CustomNodeTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Test/Html/Query/CustomNodeTests.elm -------------------------------------------------------------------------------- /test/tests/src/Test/Html/Query/MarkdownTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Test/Html/Query/MarkdownTests.elm -------------------------------------------------------------------------------- /test/tests/src/Test/Html/QueryTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Test/Html/QueryTests.elm -------------------------------------------------------------------------------- /test/tests/src/Test/Html/SelectorTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Test/Html/SelectorTests.elm -------------------------------------------------------------------------------- /test/tests/src/Tests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/src/Tests.elm -------------------------------------------------------------------------------- /test/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/test.sh -------------------------------------------------------------------------------- /test/tests/versions.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/test/tests/versions.dat -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-home/ 2 | -------------------------------------------------------------------------------- /tests/browser-tests/.gitignore: -------------------------------------------------------------------------------- 1 | /generated/ 2 | -------------------------------------------------------------------------------- /tests/browser-tests/AllHtmlEvents.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/browser-tests/AllHtmlEvents.elm -------------------------------------------------------------------------------- /tests/browser-tests/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/browser-tests/elm.json -------------------------------------------------------------------------------- /tests/browser-tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/browser-tests/index.test.js -------------------------------------------------------------------------------- /tests/check-kernel-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/check-kernel-imports.js -------------------------------------------------------------------------------- /tests/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/elm.json -------------------------------------------------------------------------------- /tests/generate-globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/generate-globals.py -------------------------------------------------------------------------------- /tests/src/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sscce-tests/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/.github/workflows/ci.yml -------------------------------------------------------------------------------- /tests/sscce-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/.gitignore -------------------------------------------------------------------------------- /tests/sscce-tests/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/Cargo.lock -------------------------------------------------------------------------------- /tests/sscce-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/Cargo.toml -------------------------------------------------------------------------------- /tests/sscce-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/README.md -------------------------------------------------------------------------------- /tests/sscce-tests/bors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/bors.toml -------------------------------------------------------------------------------- /tests/sscce-tests/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "compiler-max-retries": 20 3 | } 4 | -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/cert.pem -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/.editorconfig -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/.eslintignore -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/.eslintrc -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/.gitignore -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/.npmignore -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/CHANGELOG.md -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/CONTRIBUTING.md -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/LICENSE -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/README.md -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/circle.yml -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/README.md -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/serverless.yml -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Config/API.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Config/API.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Config/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Config/api.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Forms/API.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Forms/API.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Forms/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Forms/api.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Hello/API.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Hello/API.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Hello/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Hello/api.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Interop/API.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Interop/API.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Interop/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Interop/api.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Logging.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Logging.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Pipelines/API.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Pipelines/API.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Pipelines/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Pipelines/api.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/API.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/API.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Middleware.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Middleware.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Models/Quote.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Models/Quote.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Pipelines/Quote.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Pipelines/Quote.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Route.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Route.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/Types.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Quoted/api.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Routing/API.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Routing/API.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/Routing/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/Routing/api.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/SideEffects/API.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/SideEffects/API.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/src/SideEffects/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/src/SideEffects/api.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/demo/webpack.config.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/es-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/es-logo-small.png -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/es-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/es-logo.png -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/package.json -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/scripts/ci-elm-hack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/scripts/ci-elm-hack.sh -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/scripts/stop-test-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/scripts/stop-test-server.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/scripts/test-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/scripts/test-server.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src-bridge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src-bridge/index.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src-bridge/logger.js: -------------------------------------------------------------------------------- 1 | module.exports = console; 2 | -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src-bridge/normalize-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src-bridge/normalize-headers.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src-bridge/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src-bridge/pool.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src-bridge/request-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src-bridge/request-handler.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src-bridge/response-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src-bridge/response-handler.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src-bridge/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src-bridge/validate.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src-bridge/xmlhttprequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src-bridge/xmlhttprequest.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Body.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Body.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Charset.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Charset.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/IpAddress.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/IpAddress.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/KeyValueList.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/KeyValueList.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Pool.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Pool.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Request.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Request.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Response.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Conn/Response.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Cors.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Cors.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Plug.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/src/Serverless/Plug.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/bridge/bridge-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/bridge/bridge-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/bridge/normalize-headers-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/bridge/normalize-headers-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/bridge/pool-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/bridge/pool-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/bridge/request-handler-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/bridge/request-handler-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/bridge/response-handler-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/bridge/response-handler-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/bridge/spy-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/bridge/spy-logger.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/bridge/validate-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/bridge/validate-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/demo/config-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/demo/config-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/demo/forms-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/demo/forms-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/demo/hello-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/demo/hello-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/demo/interop-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/demo/interop-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/demo/pipelines-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/demo/pipelines-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/demo/quoted-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/demo/quoted-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/demo/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/demo/request.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/demo/routing-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/demo/routing-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/demo/side-effects-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/test/demo/side-effects-spec.js -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require should 2 | --recursive 3 | -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/DecodeTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/DecodeTests.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/EncodeTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/EncodeTests.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/Fuzz.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/Fuzz.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/PoolTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/PoolTests.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/Test.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/Conn/Test.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/ConnTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/Serverless/ConnTests.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/TestHelpers.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/TestHelpers.elm -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/elm-doc-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/elm-doc-test.json -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/elm-verify-examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/elm-verify-examples.json -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/elm-serverless/tests/elm.json.elmupgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/elm-serverless/tests/elm.json.elmupgrade -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/key.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/key.key -------------------------------------------------------------------------------- /tests/sscce-tests/embed-assets/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/embed-assets/run.js -------------------------------------------------------------------------------- /tests/sscce-tests/exit-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/exit-codes.md -------------------------------------------------------------------------------- /tests/sscce-tests/src/lib/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/src/lib/cli.rs -------------------------------------------------------------------------------- /tests/sscce-tests/src/lib/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/src/lib/config.rs -------------------------------------------------------------------------------- /tests/sscce-tests/src/lib/find_suites.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/src/lib/find_suites.rs -------------------------------------------------------------------------------- /tests/sscce-tests/src/lib/formatting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/src/lib/formatting.rs -------------------------------------------------------------------------------- /tests/sscce-tests/src/lib/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/src/lib/mod.rs -------------------------------------------------------------------------------- /tests/sscce-tests/src/lib/server_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/src/lib/server_pool.rs -------------------------------------------------------------------------------- /tests/sscce-tests/src/lib/suite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/src/lib/suite.rs -------------------------------------------------------------------------------- /tests/sscce-tests/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/src/main.rs -------------------------------------------------------------------------------- /tests/sscce-tests/suite/compiler-tests/lambda-empty-record/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/compiler-tests/lambda-empty-record/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/compiler-tests/lambda-empty-record/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/compiler-tests/lambda-empty-record/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/compiler-tests/lambda-empty-record/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/compiler-tests/lambda-empty-record/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/debug/equal-fails-with-fn/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/debug/equal-fails-with-fn/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/debug/equal-fails-with-fn/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/debug/equal-fails-with-fn/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/debug/equal-fails-with-fn/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/debug/equal-fails-with-fn/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/debug/half-baked-log/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/debug/half-baked-log/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/debug/half-baked-log/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/debug/half-baked-log/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/debug/half-baked-log/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/debug/half-baked-log/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/debug/log/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/debug/log/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/debug/log/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/debug/log/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/debug/log/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/debug/log/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/echo/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/echo/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/echo/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/echo/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/echo/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/echo/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/hello-world/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/hello-world/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/hello-world/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/hello-world/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/hello-world/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/hello-world/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/http/hello-json/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/http/hello-json/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/http/hello-json/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/http/hello-json/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/http/hello-json/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/http/hello-json/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/http/hello-world/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/http/hello-world/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/http/hello-world/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/http/hello-world/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/http/hello-world/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/http/hello-world/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/if-then-else/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/if-then-else/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/if-then-else/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/if-then-else/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/if-then-else/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/if-then-else/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1246/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1246/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1246/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1246/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1246/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1246/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1516/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1516/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1516/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1516/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1516/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1516/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1685/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1685/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1685/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1685/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1685/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1685/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1722/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1722/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1722/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1722/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1722/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1722/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1753/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1753/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1753/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1753/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1753/output.json: -------------------------------------------------------------------------------- 1 | { 2 | "ports": [] 3 | } -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1776/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1776/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1776/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1776/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1776/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1776/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1813/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1813/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1813/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1813/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1813/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1813/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1916/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1916/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1916/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1916/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1916/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1916/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1964/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1964/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1964/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1964/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/issues/1964/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/issues/1964/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/kill/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/kill/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/kill/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/kill/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/kill/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/kill/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/map-cmd/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/map-cmd/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/map-cmd/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/map-cmd/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/map-cmd/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/map-cmd/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/module-name-clash/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/module-name-clash/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/module-name-clash/Module1.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/module-name-clash/Module1.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/module-name-clash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/module-name-clash/README.md -------------------------------------------------------------------------------- /tests/sscce-tests/suite/module-name-clash/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/module-name-clash/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/module-name-clash/output.json: -------------------------------------------------------------------------------- 1 | { 2 | "ports": [] 3 | } -------------------------------------------------------------------------------- /tests/sscce-tests/suite/multiple-processes/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/multiple-processes/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/multiple-processes/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/multiple-processes/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/multiple-processes/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/multiple-processes/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/multiple-subscriptions/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/multiple-subscriptions/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/multiple-subscriptions/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/multiple-subscriptions/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/multiple-subscriptions/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/multiple-subscriptions/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/numeric-package/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/numeric-package/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/numeric-package/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/numeric-package/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/numeric-package/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/numeric-package/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/parser/README: -------------------------------------------------------------------------------- 1 | See https://github.com/elm/compiler/issues/1374 -------------------------------------------------------------------------------- /tests/sscce-tests/suite/parser/back-slash-char/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/parser/back-slash-char/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/parser/back-slash-char/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/parser/back-slash-char/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/parser/back-slash-char/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/parser/back-slash-char/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/parser/nested-module-record/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/parser/nested-module-record/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/parser/nested-module-record/Nested/Module.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/parser/nested-module-record/Nested/Module.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/parser/nested-module-record/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/parser/nested-module-record/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/parser/nested-module-record/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/parser/nested-module-record/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/random/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/random/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/random/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/random/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/random/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/random/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/sleep/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/sleep/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/sleep/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/sleep/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/sleep/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/sleep/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/subscription-order/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/subscription-order/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/subscription-order/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/subscription-order/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/subscription-order/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/subscription-order/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/time/every/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/time/every/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/time/every/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/time/every/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/time/every/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/time/every/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/time/here/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/time/here/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/time/here/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/time/here/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/time/here/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/time/here/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/time/zone-name/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/time/zone-name/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/time/zone-name/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/time/zone-name/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/time/zone-name/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/time/zone-name/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/update-loop/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/update-loop/Main.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/update-loop/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/update-loop/elm.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/update-loop/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/update-loop/output.json -------------------------------------------------------------------------------- /tests/sscce-tests/suite/util/Util/Cmds.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/util/Util/Cmds.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/util/Util/Http.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/util/Util/Http.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/util/Util/Programs.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/util/Util/Programs.elm -------------------------------------------------------------------------------- /tests/sscce-tests/suite/util/Util/Subs.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/suite/util/Util/Subs.elm -------------------------------------------------------------------------------- /tests/sscce-tests/update-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/sscce-tests/update-json.js -------------------------------------------------------------------------------- /tests/tests/FromElmTest/Fuzz.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/FromElmTest/Fuzz.elm -------------------------------------------------------------------------------- /tests/tests/FromElmTest/Fuzz/Internal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/FromElmTest/Fuzz/Internal.elm -------------------------------------------------------------------------------- /tests/tests/FromElmTest/Lazy.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/FromElmTest/Lazy.elm -------------------------------------------------------------------------------- /tests/tests/FromElmTest/Lazy/List.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/FromElmTest/Lazy/List.elm -------------------------------------------------------------------------------- /tests/tests/FromElmTest/MicroRandomExtra.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/FromElmTest/MicroRandomExtra.elm -------------------------------------------------------------------------------- /tests/tests/FromElmTest/RoseTree.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/FromElmTest/RoseTree.elm -------------------------------------------------------------------------------- /tests/tests/Test/Array.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Array.elm -------------------------------------------------------------------------------- /tests/tests/Test/Basics.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Basics.elm -------------------------------------------------------------------------------- /tests/tests/Test/Bitwise.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Bitwise.elm -------------------------------------------------------------------------------- /tests/tests/Test/Bytes.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Bytes.elm -------------------------------------------------------------------------------- /tests/tests/Test/Char.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Char.elm -------------------------------------------------------------------------------- /tests/tests/Test/CodeGen.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/CodeGen.elm -------------------------------------------------------------------------------- /tests/tests/Test/Dict.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Dict.elm -------------------------------------------------------------------------------- /tests/tests/Test/Equality.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Equality.elm -------------------------------------------------------------------------------- /tests/tests/Test/Html/Events.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Html/Events.elm -------------------------------------------------------------------------------- /tests/tests/Test/Json.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Json.elm -------------------------------------------------------------------------------- /tests/tests/Test/List.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/List.elm -------------------------------------------------------------------------------- /tests/tests/Test/Maybe.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Maybe.elm -------------------------------------------------------------------------------- /tests/tests/Test/Result.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Result.elm -------------------------------------------------------------------------------- /tests/tests/Test/Set.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Set.elm -------------------------------------------------------------------------------- /tests/tests/Test/String.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/String.elm -------------------------------------------------------------------------------- /tests/tests/Test/Tuple.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/tests/Test/Tuple.elm -------------------------------------------------------------------------------- /tests/vdom-tests/.eslintignore: -------------------------------------------------------------------------------- 1 | elm.js 2 | elm-stuff 3 | -------------------------------------------------------------------------------- /tests/vdom-tests/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/.eslintrc.json -------------------------------------------------------------------------------- /tests/vdom-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/.gitignore -------------------------------------------------------------------------------- /tests/vdom-tests/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/.prettierignore -------------------------------------------------------------------------------- /tests/vdom-tests/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "proseWrap": "never" 3 | } 4 | -------------------------------------------------------------------------------- /tests/vdom-tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/LICENSE -------------------------------------------------------------------------------- /tests/vdom-tests/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/bin.js -------------------------------------------------------------------------------- /tests/vdom-tests/elm-tooling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/elm-tooling.json -------------------------------------------------------------------------------- /tests/vdom-tests/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/elm.json -------------------------------------------------------------------------------- /tests/vdom-tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/index.html -------------------------------------------------------------------------------- /tests/vdom-tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/index.js -------------------------------------------------------------------------------- /tests/vdom-tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/package-lock.json -------------------------------------------------------------------------------- /tests/vdom-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/package.json -------------------------------------------------------------------------------- /tests/vdom-tests/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/patch.js -------------------------------------------------------------------------------- /tests/vdom-tests/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/serve.json -------------------------------------------------------------------------------- /tests/vdom-tests/src/ElmUi.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/src/ElmUi.elm -------------------------------------------------------------------------------- /tests/vdom-tests/src/KeyList.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/src/KeyList.elm -------------------------------------------------------------------------------- /tests/vdom-tests/src/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/src/Main.elm -------------------------------------------------------------------------------- /tests/vdom-tests/src/OnlyHtml.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/src/OnlyHtml.elm -------------------------------------------------------------------------------- /tests/vdom-tests/src/Sandbox.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/src/Sandbox.elm -------------------------------------------------------------------------------- /tests/vdom-tests/src/SandboxSimple.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/src/SandboxSimple.elm -------------------------------------------------------------------------------- /tests/vdom-tests/tests/elm/App.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/tests/elm/App.elm -------------------------------------------------------------------------------- /tests/vdom-tests/tests/elm/KitchenSink.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/tests/elm/KitchenSink.elm -------------------------------------------------------------------------------- /tests/vdom-tests/tests/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/tests/helpers.js -------------------------------------------------------------------------------- /tests/vdom-tests/tests/helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/tests/helpers.test.js -------------------------------------------------------------------------------- /tests/vdom-tests/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/tests/vdom-tests/tests/index.test.js -------------------------------------------------------------------------------- /x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/another-elm/std/HEAD/x.py --------------------------------------------------------------------------------