Carl Gay
Carl Gay
### Steps to reproduce the problem 1. Turn on High Contrast theme in settings 2. Turn on the advanced UI (but maybe not necessary) 3. Start to reply to a...
The majority of sources/lib/big-integers/double-integer.dylan appears to be commented out because it uses `dylan/*` as the name for `*` imported from the `dylan` module. (This is obviously low priority.)
What we have now: ``` let foo = really-long-function-name( long-argument-1(), long-argument-2()) ``` What I want: ``` let foo = really-long-function-name( long-argument-1(), long-argument-2()) ``` Note, **never** this: ``` let foo =...
dylan-mode highlights macros like with-open-file. If you import file-system with prefix "fs/" (or probably anything else) the highlighting of fs/with-open-file doesn't happen. To solve this I suppose we need a...
The second line doesn't indent correctly (or at all): ``` if (starts-with?(url, "https://github.com")) make() ``` If I change `"https://github.com"` to the empty string dylan-mode indents the second line correctly.
Leaving this here as a reminder. Could be useful but I haven't tried it. http://www.flycheck.org/en/latest/index.html
* It hangs * It dumps logs to stdout It's been a while since I really looked at it but IIRC I never created a good way to mock a...
There doesn't seem to be a need for separate client and server libraries, and figuring out which names come from either those or `http-common` is confusing. Combine into just `http`,...
The server currently uses one thread per connection, which obviously doesn't scale very well.
The http-client-test-suite registers some test resources like this: ``` define function register-test-resources (server :: ) add-resource(server, "/x", make()); add-resource(server, "/echo", make()); add-resource(server, "/", make()); ``` Trying to access / fails...