Results 22 comments of Simon Wörner

``` yarn upgrade electron ``` fixes the issue

> in that case simply replace the private key with some placeholder value? Yes, but the server config needs the public key (which is derived from the private key) so...

Nice :) For floats I see two possible ways to go: 1. Add a "first-layer" parser before `FromStr` or e.g. [`fast-float`](https://lib.rs/crates/fast-float) which removes `_`. 2. Built our own float parser...

Allocation free should be easy with `minimal-lexical`, we can just wrap the number with a "skip `_`"-iter. This approach generally feels like a good fit. > Also we haven't clearly...

Oh, totally missed that `SourceLoader` is a Trait. That only leaves the question how to integrate a custom `SourceLoader` with the language server.

Why not implement suffixes like in Rust to specify the type, e.g. `0u8` and `0xffu8`? If someone else currently is affected by this, my workaround is a "convert" function: ```Rust...

1. I could see a python like implementation with an unlimited integer size, implemented with something like [rug](https://lib.rs/crates/rug). But I'm not really sure I like this for Rust inspired scripting...

Can't talk for anybody else, but my use case is working with system emulation and `usize` pointers (`u32`, `u64` depending on architecture). So `i64` is often not big enough for...

> As long as you understand that a particular variable should not be interpreted as a signed integer, there really is no harm keeping u64's in them (as long as...

If you copied over the vscode launch configuration from `yo` you should make sure it's for a type script project with yarn and webpack enabled, otherwise the debugging isn't working...