cedvdb
cedvdb
@atn832 I had a look into `QuerySnapshotStreamManager` and it skips item when converters are differents here https://github.com/atn832/fake_cloud_firestore/blob/master/lib/src/query_snapshot_stream_manager.dart#L108 This does not seem like a straightforward fix, since this library assumes that...
(outdated comment, the two comments from @Chuckame below are outdated too) The `inclusiveEndDate` is a rather strange api which could be achieved in the `selectableDayPredicate` instead (when the user has...
Maybe I misunderstand the non termination bit but wouldn't the compile time equivalent of a stack overflow error fit ?
What about a sensible recursion limit that is tweakable ? Is this an issue in c++ ?
This could be implied and the default ``` enum E { e1, e2 } void f({E e in E}) { // unnecessary in E ``` Which would be the same...
@eernstg I believe your example is not what you meant to write in static members `color: Colors.green` should be `green`. imo, keep the dot `.` in front of the shorthand,...
@tatumizer (removed my previous comment before you quoted me but) Type `'on' | 'off'` Same as type `Colors.green | Colors.red | ...` which can be generated from static members of...
> In your proposal you loose this super important aspect, there is no way to type "something" and ask for the analyzer to suggest the options. Note that autocomplete works...
@tatumizer > If it's not an enum, then what is it? A second concept, parallel to enum? What is the *theoritical* type of `Color color in Colors` in the proposal...
Might wanna move this to lang, I did not find this issue then [posted to stackoverflow](https://stackoverflow.com/questions/55093207/dart-type-checking-with-generics). Edit: wrong link [this one is correct](https://stackoverflow.com/q/70499209/), In some cases it's worse for readability,...