WC Leung
WC Leung
Does `jsdom` help?
Anyway, here are the contents of the source files: **index.js** ```js // @flow import {A} from "./a.js"; import {B} from "./b.js"; const a = new A(null); const b = new...
I have edited the generated `b.js` a bit and it seems to fix the problem: ```js var MaybeA = _tcomb2.default.maybe(_a.A, "MaybeA"); ``` becomes a lazy evaluating function with closure: ```js...
> Flow allows for circular dependencies at the type-level. However babel-plugin-tcomb needs to reify those types at the value level so avoiding circular dependencies in the first place seems the...
I see. Just keep this on the back burner so someone may work with this later. Anyway, I may have some time myself a few months later. Also, thanks for...
Is there anything appearing in the system logs (e.g. permission denied)? On Tue, Nov 19, 2019, 11:07 PM gilou wrote: > Hello, > I'm on linux debian stretch actually. If...
Is there any function that perform the path operation correctly cross-platform? On Tue, Nov 19, 2019, 11:57 PM gilou wrote: > That it's because in the two lines, only the...
Is anyone actively working on this issue? If no I'd like to have a look and see if I can solve it. Anyway, this will take some time because the...
Searched the code, confirm that the function `_expandIfNeed` and the value of `initialExpanded`, both in `app_bloc.dart`, creates the behavior described in this issue. This "buggy" behavior looks like a workaround...
I have come up with 2 approaches. Please help me to decide on which one (or both) to work with. 1. Add a persistent expanded/collapsed state to each collapsible item,...