Matan Lurey

Results 274 comments of Matan Lurey

That sounds pretty complicated, and I'd worry about it being abused/confused with `@protected` (or having a bunch of methods that will show up in the public API, but not really...

Ah OK, I understand now, thanks for explaining. This is a similar thing we'd like to lint for Angular Dart, definitely useful. /cc @ferhatb

Maybe I misunderstand something, but I'm on @nex3's side on this one. Imagine asking to mock `new DateTime()`. Clearly that isn't possible - we do have a new different package,...

@nex3: I imagine though you'd still want dart2js for the "binary", right? i.e. dart-sass.js (dart2js) and dart-sass.debug.js (using DDC)

I think just having the capability would be enough, for now. A sass_browser package could always implement the gritty bits.

I don't mind helping here! Internally and with Bazel we'd have it as a worker, so I can contribute. _Edit_: @nex3 Would you prefer a separate repository for Bazel rules...

My intuition is to roll-out slowly, and only support unambiguous inference: ```dart @Component( directives: const [Child], template: ''' ''', ) class Comp { @view List child; } ``` In this...

Exactly a `Child`. Keep it simple. We can always expand later. **EDIT**: Specifically, this should be sugar for basically saying: > Give me all instances of directive `Child` in my...

@leonsenft: WDUT of my initial proposal? I might be able to tackle this!

Note that we technically already support this for `List`, and soon `Element`: https://github.com/dart-lang/angular/issues/814 ... so it probably makes sense to generalize this soon.