Jesse Jackson

Results 164 comments of Jesse Jackson

> I think this ended like this is since there are so many selected word states in VS Code. At the top of my mind there are theses two, "same...

I'm not sure that I understand exactly, but maybe you can help by answering a question: I see that you recently made [a commit with the title "selected text color"](https://github.com/hedinne/popping-and-locking-vscode/commit/acd6ed8b635fc4ca71e2e09b8e131c07492080dd)...

Thanks for explaining! I'm happy to give feedback, although it may not always be as quick as you'd like. My interpretation of what you said is that the source code...

> This should be resolved when #1935 is closed. @mo8it I just tested the [`v6` branch](https://github.com/rust-lang/rustlings/tree/v6) (specifically https://github.com/rust-lang/rustlings/commit/8c8f30d8ce3b732de649938d8945496bd769ac22) and see the same behavior as OP with rust-analyzer in VS Code....

In absence of early feedback from a maintainer, here's more (perhaps counter-) perspective. From [`README.md`](https://github.com/intel/intel-one-mono/blob/a78bea53fb9069813061ece45a8c814cdd3c3636/README.md?plain=1#L9): > Identifying the typographically underserved low-vision developer audience, The Intel Brand Team designed the Intel...

> To my understanding the current code is correct. According to the tests the price for 40 apples is 80 rustbucks, which leads to 2 rustbucks per apple. If Mary...

@DreamOfIce Perhaps [TS types can be provided via JSDoc](https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html) as a first step instead of attempting to maintain declaration files separately. This will allow for generation of declaration files and...

Also for `AsyncDisposableStack`. @lucacasonato Shouldn't situations like this — where compiling (type-checking) succeeds, but the compiled JavaScript result fails at runtime — be labelled as https://github.com/denoland/deno/labels/bug?

It appears that you're focused on this behavior of [`if let`](https://doc.rust-lang.org/rust-by-example/flow_control/if_let.html): when using it, you delegate the unwrap operation to a compiler abstraction and then your code block is lazily...

> The `.map` doesn't really work for me, because I need to actually be able to return the unwrapped item from the code blocks. Of course: that makes sense — ...