Wojciech Kordalski

Results 17 issues of Wojciech Kordalski

In VSCode themes can "extend" other themes. It is done by `include` field in the extending theme. `monaco-vscode-texmate-theme-converter` ignores this field. In case of `convertTheme` there is no other possibility...

Monaco theme `base` field is always `vs-dark`. But, depending on the theme it may be also `vs` or `hc-black` ([https://github.com/microsoft/vscode/blob/.../src/vs/monaco.d.ts#L1018](https://github.com/microsoft/vscode/blob/fcbf1eb903ad019fbd003d754067d0728d79d498/src/vs/monaco.d.ts#L1018)). We should at least inform users of this library (in...

This reverts commit 08c4ce15255ac8d03df5315796e7b63e624e2987. The fields are considered as unused by `rustc`, however they might be stored to be dropped in the right moment. In the future we should analyze...

Commit 08c4ce15255ac8d03df5315796e7b63e624e2987 introduced some bug: ``` Uncaught Error: closure invoked recursively or destroyed already at imports.wbg.__wbindgen_throw at wasm_bindgen::throw_str::ha13545fa78d0389b at ::describe::invoke::he801481bf9a481f4 at __wbg_adapter_42 at WebSocket.real ``` I suppose, one of the...

bug

Seed 0.8 extended `Closure` with `new` method via a trait, because this method was missing in `wasm-bindgen < 0.2.81`. `wasm-bindgen 0.2.81` introduced `Closure::new`. Thus `Closure::new` changed meaning from `::new()` to...

### Versions I can reproduce this bug in Seed 0.9 I cannot reproduce this bug in Seed 0.8 ### In short: 1. In `view` we return something like `div![el_ref(&some_elref), div!["Some...

bug

Intuitively, returning `()` or `None` from future passed to `orders.perform_cmd(...)` means that no message should be sent to Seed mailbox. Similarly, `orders.msg_sender()(None)` should not send any message. And in these...

When using Seed's macros (like `div` or `style`), `seed::prelude::*` must be imported. Otherwise compiler errors are generated (e.g. ```failed to resolve: use of undeclared type `IndexMap` not found in this...

Hi! I'm trying to build Tree-sitter WASM library with debug symbols. So I do: ``` ~/tree-sitter > ./script/build-wasm --debug emcc: error: undefined exported symbol: "__ZNKSt3__220__vector_base_commonILb1EE20__throw_length_errorEv" [-Wundefined] [-Werror] ``` ...and I...

I have code like this: ```python def f(): a + b ``` Which parses to: ``` module [0, 0] - [2, 0] function_definition [0, 0] - [1, 6] name: identifier...