Daiyi Peng

Results 4 issues of Daiyi Peng

The major motivation is to let users discover new features, improvements and bug fixes in each versions in a human readable manner. We can follow Node's practice: https://github.com/nodejs/node/blob/master/CHANGELOG.md

misc.

## Code ```js console.time('timeout test'); zone.execute(() => { while (true) {} }, [], { timeout: 50}) .catch((error) => { console.timeEnd('timeout test'); }); ``` ## Expected timeout test: varies between 50...

optimization
P2

PyGlove provides a runtime typing feature through `pg.typing`, for example, a symbolic class can be created via: ``` from dataclasses import dataclass import pyglove as pg @pg.symbolize([ ('x', pg.typing.Int(min_value=1, max_value=2)),...

enhancement

## Code ```js engine.serve('{"application": "testApp", "entryPoint": "foo", }') .catch((error) => { console.log(typeof error); }); ``` ## Expected 'object' ## Actual 'string'