Naman Goel
Naman Goel
@necolas Does this look good to merge? (I know you're on a break, so let me know if I should run this by someone else while you're away)
> Does this patch still allow importing of types from the main package, e.g., import type { StrictHTMLElement } from 'react-strict-dom'? Anything that is exported from the entry point can...
Let me figure this out.
> Removing the mapping (or mapping to a non-existent file, as was the case before in this PR) results in no flow errors...which is a bit concerning. This is a...
I think it's useful to decide the subset of the API that we might want for `` and ``. For example, it might make sense to have the capability, but...
> We could look into making a way to try to disable the iOS feature FWIW, enabling the iOS feature is preferable in my opinion, but I understand if it...
The noted problems here suggest to me that decorators are possibly going to have very much the same problem as operator overloading is supposed to have. The major concern I...
@sebmck Fair point. Thinking about it more, perhaps they are no so important for functions. Functions that take take and return functions are pretty easy to write. They are more...
first a question: do generator functions get hoisted? If not isn't that confusing as well. If yes, there is already a proposal for making custom wrappers around generators, like async...
Another approach, let the function get hoisted. But the decorator should be applied where it is defined. So this: ``` var readOnly = require("some-decorator"); @readOnly function foo() { } ```...