Lukas Rieger
Lukas Rieger
I think one big difference is that F# computation expressions use an external state machine (the CE builder), and C# async / await compiles down to a specialized state machine....
I don't know if it's the same issue, but the `` invalid character '\x00' looking for beginning of value.`` part is similar. ---------------- When I run ``` docker run -it...
A ``useDispatch`` hook would be great, maybe this could use the Context API internally? I have thought about this for a total of 5 Minutes, and this is what I...
I have the issue that I need to somehow pass dispatch to the child of a third-party component, so I'm already using a context for dispatch, with this I was...
I was following https://stackoverflow.com/questions/50526710/typescript-compiler-api-get-type-of-imported-names for how to get the type of the imported object. (tl;dr: ```ts let symbol = checker.getSymbolAtLocation(imp.name) let type = checker.getDeclaredTypeOfSymbol(symbol); ``` The change in CompilerHost was...
This actually fixes two things: * the mentioned issue when importing generics * default exports were not imported see https://github.com/microsoft/TypeScript/blob/9a62db2b5c5a305139d18f5f25c725f0779493cd/src/compiler/types.ts#L1807-L1817 If I did ``import d, { a } from 'x'``...
There is one pending issue with importing generics - classes and interfaces work, aliases don't. example: file 1 ```ts declare interface IGenericInterface { value: T } declare class GenericClass {...
I've merged master - I had wanted to do a few smaller PRs instead of one big one, but that kinda backfired. Also I found another issue: default exports are...
the ``ofXXX`` functions can be kept, right?
hm, I'll need to update the version of Fable.Core that is referenced by ``test-compile.fsproj``.