Kevin Barabash

Results 76 issues of Kevin Barabash

@SteveSandersonMS I was watching https://www.youtube.com/watch?v=gKX-cdqnb8I and the second example shows server code running inside the browser using a single .wasm file. Since it was built with Wasm.Sdk and browsers don't...

**Is your feature request related to a problem? Please describe.** I like viewing the component in the browser b/c I'm able to use the full power of the browser's dev...

enhancement

I think this will be useful in dealing with MathML rendering issues in the future.

documentation
testing
good first issue

Would it be possible to add a ligature to replace `forall` with `∀`?

### Describe the bug I added a new xUnit test project using the `+` button in the F# solution explorer. When I did that the project did show up until...

## Summary: Inlay hints can be useful at see the types for things without having to hover over everything. They can also be useful in understand what args are being...

For example: ``` const oldAdd = Number[Symbol.operator('+')]; Number[Symbol.operator('+')] = (a, b) => { if (typeof a != "number" or typeof b != "number") { console.log("warning: types coercion has occurred in...

``` class Thinger {} let thingerA = new Thinger() console.log(thingerA + 1) // "[object Obejct1]" ```

The reason for wanting to access defined operators, is that if variables are a certain type you might want to get an operator or operators for that type and avoid...