Harry Sarson

Results 35 issues of Harry Sarson

Babel's polyfill for extending built in classes now creates objects that are instances of the built in class but not instances of the derived class see babel/babel#4485. Therefore the tests...

(More of a question than an issue.) Is it possible to set the background of the entire table as apposed to setting the background of individual cells? I looked at...

Hi, this is a really cool project. Looking at the source I see a todo for multithreaded support and I was wondering about your plans for it? I guess you...

- This is a regression report from elm 0.19.0 to 0.19.1. - When I run `elm-0.19.0 make --docs=documentation.json` in a kernel package it successfully generates the docs and exits with...

bug

Fix tests by making the "fake application" in ./tests instead a "fake package" which helps work around the fact that elm-json does not like the fact that does not like...

To reproduce: ```bash ./tests/run-tests.sh ``` The error is: ``` /home/harry/repo/elm/core/tests/elm.json Failed to read elm.json: Expected "source-directories" to contain at least one item, but it is empty. # clear out the...

`Bytes` equality requires a special case in `_Utils_eqHelp`. This PR adds that special case. Fixes https://github.com/elm/bytes/issues/15

If two (different) identical objects contains `NaN` the full structured equality finds them to be different. However, if an object containing `NaN` is compared with itself the shortcut reference equality...

The following elm code: ```elm module Main exposing (toWrite) largeInt: Int largeInt= 1000000000000000000000 ``` is is changed by elm-format as such: ```diff --- a/Main.elm +++ b/Main.elm @@ -3,4 +3,4 @@...

discussion
blocked: Elm 0.19.2

A compiler needs to read source files and write output files. Practical compilers will also read and write a number of intermediate files, caching build artifacts for incremental compilation reasons....