Ilya Yanok
Ilya Yanok
Regarding `CMD_EXPANDED=$3`, from zsh doc (http://zsh.sourceforge.net/Doc/Release/Functions.html): > The actual command that will be executed (including expanded aliases) is passed in two different forms: the second argument is a single-line, size-limited...
Not really. I only fixed the typo in the substitution definition.
This would help Mockito to get rid of the need of reviving default values too. Right now we have a problem, if a default value contains a private name. OTOH,...
Yeah, I know about this trick (and even considered applying it in mockito), that's why I wrote "not supposed" instead of "not allowed" :) It is still behind having to...
> @iinozemtsev what does mockito actually use the default value for? Does it forward it on to some other method or is it actually capturing the value? We want to...
cc @srawlins
> Ugh, yeah this is annoying. We could punt on it and leave a TODO. Since already the story is that we don't report enough things; nothing wrong with incrementally...
@lrhn Yep, we want to check the static type of the handler, and as part of it we want to check it returns `FutureOr`. I just thought I found two...
Found another weird case: ```dart class D { LinkedHashMap? m; } void g(D d, LinkedHashMap? hm) { d.m = LinkedHashMap() ; // OK } ``` but ```dart void g(D d,...
In general, I think this lint should be conservative and only suggest to change to a literal if we 100% sure it will fit (e.g. there is a context type...