Rename Parameter#arg and ParameterWithDefault#def fields (#6255)

## Summary

This PR renames...

- `Parameter#arg` to `Parameter#name`
- `ParameterWithDefault#def` to `ParameterWithDefault#parameter` (such
that `ParameterWithDefault` has a `default` and a `parameter`)

## Test Plan

`cargo test`
This commit is contained in:
Charlie Marsh 2023-08-01 14:28:34 -04:00 committed by GitHub
parent adc8bb7821
commit 9c708d8fc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
56 changed files with 268 additions and 260 deletions

View file

@ -47,7 +47,7 @@ impl Identifier for Parameter {
/// ...
/// ```
fn identifier(&self) -> TextRange {
self.arg.range()
self.name.range()
}
}
@ -60,7 +60,7 @@ impl Identifier for ParameterWithDefault {
/// ...
/// ```
fn identifier(&self) -> TextRange {
self.def.identifier()
self.parameter.identifier()
}
}