Ricci Adams
Ricci Adams
Assume the following code: ``` function foo() { if (bar() || true) { baz(); } else { NOT_REACHABLE(); } } ``` Currently, babel-minify transforms this to: ``` function foo(){bar()||!0?baz():NOT_REACHABLE()}foo(); ```...
I use estraverse.traverse in [oj](https://github.com/musictheory/oj) to iterate over the esprima AST. I'd like to use `estraverse.Controller` directly, so I can use `Controller#path` and `Controller#parents`. In estraverse.js, these methods are commented...
`pngcrush` uses a temp file (I believe `pngout.png`) when running. When "Export All Assets" is used, multiple NSTask's are created, all of which use `pngcrush`. One `pngcrush` can write to...
Searching for "Audio EQ Cookbook" returns a link to ```http://www.musicdsp.org/files/Audio-EQ-Cookbook.txt```, which is 404 now that the site is redesigned. I'm sure there are countless links on the Internet to 404'd...
Starting with 10.11, Apple is changing the system font to San Francisco instead of Helvetica Neue. The theme should be updated to use the new font, in order to match...
In KSSignalInfo.c, line 118: ```SIGNAL_INFO(SIGTERM, g_sigTrapCodes),``` Shouldn't that be `SIGTRAP`?
This fixes #363. Scope needs to know the reserved names list, so it can know to skip the mangled name. However, I'm not sure how you would like this information...
### Describe the bug When using the lite preset, whitespace at the beginning of a line is sometimes not trimmed. ### ### Expected behaviour I expect to see duplicate spaces...
### Description of the bug Per Discord conversation, `subl` is crashing after installing 4202 ### Steps to reproduce 1. Quit Sublime Text 2. Run `subl` from build 4202 ### Expected...
### Description of the bug Per the Sublime documentation, `layer0` is "the bottom-most texture layer for the element." My assumption is that `layer1` is always drawn over `layer0`, `layer2` is...