insidewhy

Results 184 comments of insidewhy

Consider: ```typescript type LiteralMap = { item1: S1, item2: S2, item3: S3 } ``` With this feature at every definition using this type I have to use: ```typescript function user(map:...

Tried to work around this but it seems the angular compiler performs special optimisations on `*ngIf` so even if you were able to loosely copy it, you could never get...

See here in `ngx-init`'s source: https://github.com/amitport/ngx-init/blob/master/projects/ngx-init/src/lib/ngx-init.directive.ts#L13 That `clear()` trashes the entire render tree and replaces it when you get a new value. If you used `*ngIf` only the affected nodes...

@jonrimmer I answered this above. Creating an embedded view is no problem. Resetting it via some kind of `*ngIf` clone causes the ~performance issue~ undesirable consequences and sometimes also performance...

@jonrimmer It isn't an issue for `cdkTable` because each embedded view is relatively simple. ngIf, by nature, is often used to hide large chunks of the view often containing several...

I know, but many plugins also touch the source map object attached to the vinyl by gulp-sourcemaps that's why I generically use the term gulp.

Hey my spread support change has landed on the harmony branch! Could you release a new version of esprima-six that includes it? Then I can prepare a pull request that...

That message appeared whilst I was looking at it... Cool thanks!

Cool, I'm working on a parser at the moment using my own parsing system based on PEGs. It allows creating a parser that constructs an AST from a single grammar....

Oh I wonder, would you mind if I switched the test system to being in six rather than js? Since my change to add support for ".six" file extension you...