Maxim Dikun
Maxim Dikun
I have same problem. But I want to apply additional pseudo-selectors like this: ``` css a:at-most(5):nth-child(n+4) { display:none; } ``` Use case: items table 2 rows x 3 cols, and...
Maybe start with showing lint for names, that have type in them? Like: String someString = ''; int zeroInt = 0;
@mockturtl thanks for noticing! Fixed by increment version number. Dartdoc haven't supported generic methods previously. Now it's fixed.
I vote for separate library in same package. I'll try to implement this later.
Actually EmptyExpectation allocation was higher. `CombinedExpectation` allocation + `EmptyExpectation` allocation takes around 8-10% of time. But combined with other operations like checking expectations parameter while ParseResult.copy and so on, gives...
Also removing expectation will give room for additional optimization. For example, we could replace in `operator >>`: ``` dart return res2.copy( isCommitted: res.isCommitted || res2.isCommitted); ``` with ``` dart return...