webstrand
webstrand
If you create an `S.value` and update it multiple times before attaching any listeners, the Value erroneously reports conflicting values. ```js var foo = S.value(100); foo(200); // Succeeds foo(300); //...
When using the CKEditor5 API, creating a new editor returns a Promise which must be resolved to obtain the newly created editor object: ```ClassicEditor.create(textarea).then(editor => { ... })```. I needed...
I am using `Surplus.content` directly to manipulate the content of an element not created or controlled by the Surplus compiler. But the same error can be reproduced with JSX syntax....
When most assertion macros are called, they call another macro, and in the process expand the arguments originally passed to the assertion. Since stringification happens in `munit_assert_type_full`, after the user's...
I've added ~amd64, but not ~arm or ~x86 because I can't test those.
# Bug Report ### 🔎 Search Terms function top type callable spread never regression ### 🕗 Version & Regression Information - This changed between versions 3.8.3 and 3.9.7 ### ⏯...
# Bug Report ### 🔎 Search Terms intersection assignability omit compatability ### 🕗 Version & Regression Information - This changed between versions 3.8.3 and 3.9.7 ### ⏯ Playground Link [Playground...
When using a shader to zoom in on the selection area, the selection rectangle is noticeably offset from the cross-hair by `1px`.  The issue seems to be caused by...
Enables easy tracing of DCGs: ```prolog natural(N) --> digit(D), $natural(D,N). natural(A,N) --> digit(D), {A1 is A * 10 + D}, $natural(A1,N). natural(N,N) --> []. ```
# Bug Report ### 🔎 Search Terms regression conditional type inside function behaves difference ### 🕗 Version & Regression Information - This changed between versions 4.2.3 and 4.3.5 ### ⏯...