JP Sugarbroad
JP Sugarbroad
But there's no way to remove --quick when running over a package, only for a single file. People have previously been told that there's no need for it.
How would we make that change? We obviously can't change `TokenSource` itself. We could introduce `ContextTokenSource` or something, but that seems super ugly. Is there a deprecation path available?
Nothing obvious in logcat.
``` 03-06 13:26:06.950 21308 21750 E NativeSerialWrapper: IOException in send 03-06 13:26:06.950 21308 21750 E NativeSerialWrapper: java.io.IOException: Error writing 544 bytes at offset 0 length=544 03-06 13:26:06.950 21308 21750 E...
This can also be a performance issue if we end up holding onto large temporaries.
Absolutely. Look at the difference between "loop 1" and "a = loop 1" in the coffeescript output.
Indeed, and I am asking for different code generation. Let me try another example: ``` -> while a a = f() ``` and ``` -> while a a = f()...
Thanks for the kind words @maxtaco. However, I respectfully disagree that awaited expressions are the blocking issue here: even if await isn't an expression, you still have this problem. For...
So far nothing looks wrong, but some comments: 1. When importing external code, it's a best practice to import as-is in one commit and then make changes to it in...
* 1. The TweetNaCl import seems to be monolithic. Maybe I just missed the split? * 4. Yeah, you are intended use `crypto_sign_keypair` to generate the concatenated sk/pk thing. But...