[DAS] Fixes type argument handling for `Create function/method/operator`
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
Only marked as WIP because I'd prefer to land https://dart-review.googlesource.com/c/sdk/+/459521 first. Thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
I've rebased this.
Can I get reviews here please? CC @brianwi...@google.com and @sraw...@google.com. Thanks a lot!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
List<TypeParameterElement>? typeParametersList;Can this be
```
var typeParametersList = typeParametersSet?.toList();
```
bool onSameLine(int offset1, int offset2) {This could be a proper method on LineInfo. I grepped around and found some other possible cases. And it would be nice to factor a few changes out from this large CL 😄
```
git grep 'lineNumber.*==' pkg/{analysis_server,analyzer_plugin,analysis_server_plugin,linter,analyzer}
```
```
git grep '==.*lineNumber' pkg/{analysis_server,analyzer_plugin,analysis_server_plugin,linter,analyzer}
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
bool onSameLine(int offset1, int offset2) {This could be a proper method on LineInfo. I grepped around and found some other possible cases. And it would be nice to factor a few changes out from this large CL 😄
```
git grep 'lineNumber.*==' pkg/{analysis_server,analyzer_plugin,analysis_server_plugin,linter,analyzer}
``````
git grep '==.*lineNumber' pkg/{analysis_server,analyzer_plugin,analysis_server_plugin,linter,analyzer}
```
Great idea! Here it is the new CL. I'll come back to this one once that one lands https://dart-review.googlesource.com/c/sdk/+/471061.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
Patchset 5 is related to the changes Sam requested and patchset 6 is generating `api.txt` to fix the broken tests.
Can this be
```
var typeParametersList = typeParametersSet?.toList();
```
Yes, thanks! I think I was originally doing more work there but not anymore. Great catch!
Felipe MorschelThis could be a proper method on LineInfo. I grepped around and found some other possible cases. And it would be nice to factor a few changes out from this large CL 😄
```
git grep 'lineNumber.*==' pkg/{analysis_server,analyzer_plugin,analysis_server_plugin,linter,analyzer}
``````
git grep '==.*lineNumber' pkg/{analysis_server,analyzer_plugin,analysis_server_plugin,linter,analyzer}
```
Great idea! Here it is the new CL. I'll come back to this one once that one lands https://dart-review.googlesource.com/c/sdk/+/471061.
That CL has landed.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |