Sebastian Markbåge

Results 72 issues of Sebastian Markbåge

```js (function () { var n = __abstract('number', '(5)'); var arr = {0: 'a', 1: 'b'}; var i = 2; do { arr[i] = 'x'; i++; } while(i < n);...

bug
interpreter
abstract

```js var c = __abstract('boolean', 'c'); var y = __abstract('object', 'y'); __makeSimple(y); var obj = Object.assign({}, y); has = 'anything' in obj; desc = Object.getOwnPropertyDescriptor(obj, 'anything'); ``` This doesn't define...

interpreter
abstract

Flow doesn't support optional field in classes. Internally, we transpile using the class fields transform which turns all Flow annotated fields into field initializers with `undefined`. So ObjectValue turns into...

interpreter
abstract

```js (function () { var key = __abstract('string', '("y")'); function Foo() { } Foo.prototype.x = function() { }; var obj = new Foo(); obj[key] = 123; result = typeof obj.x...

bug
abstract

```js var c = __abstract('boolean', 'c'); var x = {foo:1}; if (c) x.bar = 2; result2 = Object.getOwnPropertyDescriptor(x, 'bar'); var y = __abstract({foo:1}, 'y'); __makeSimple(y); if (c) y.bar = 2;...

bug
interpreter
abstract

Sometimes transform streams keep some internal state and keeps a buffer window. It then waits to flush that buffer to the readable stream until the buffer window is full. Examples...

acknowledged missing feature

This moves the Flight Client's to use Chunks that mimick a variant of Promises instead of relying on throwing Promises. It still throws Promises in the bounds (readRoot and the...

CLA Signed

The use case is for example, translation components rendering string content. The HTML spec has some unfortunate attributes that behave kind of like content. It seems like they should be...

Type: Feature Request
Component: DOM
React Core Team

The React Server Components payload is a custom protocol that extends what is serializable beyond just JSON. Beyond just JSON we also support all React primitives (React.lazy, ReactNode) and global...

Type: Feature Request