Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade rust to latest version #1015

Merged
merged 1 commit into from
Jun 20, 2024

Conversation

OmarTawfik
Copy link
Collaborator

No description provided.

@OmarTawfik OmarTawfik requested a review from a team as a code owner June 17, 2024 14:05
Copy link

changeset-bot bot commented Jun 17, 2024

🦋 Changeset detected

Latest commit: af60896

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 10 packages
Name Type
@nomicfoundation/slang Patch
@nomicfoundation/slang-darwin-arm64 Patch
@nomicfoundation/slang-darwin-x64 Patch
@nomicfoundation/slang-linux-arm64-gnu Patch
@nomicfoundation/slang-linux-arm64-musl Patch
@nomicfoundation/slang-linux-x64-gnu Patch
@nomicfoundation/slang-linux-x64-musl Patch
@nomicfoundation/slang-win32-arm64-msvc Patch
@nomicfoundation/slang-win32-ia32-msvc Patch
@nomicfoundation/slang-win32-x64-msvc Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor

@Xanewok Xanewok left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

@@ -49,7 +49,7 @@ impl<T: KindTypes> Cursor<T> {
}

fn set_from_ancestor_node(&mut self, ancestor: &Rc<PathAncestor<T>>) {
self.parent = ancestor.parent.clone();
self.parent.clone_from(&ancestor.parent);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's so rarely used in practice to the point where this looks less immediately clear than a = b.clone() for me but I don't want to block as it's a minor thing.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Xanewok this was produced by https://rust-lang.github.io/rust-clippy/master/index.html#/assigning_clones

I'm not sure how common it is to use clone_from() in external crates is, and I agree the code is a bit less readable this way. I don't see a way to silence this rule on specific types (Rc<>, etc...). Should we just disable it?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think so. We can re-enable it once we want to eek out more performance (the Clone::clone_from exists to reuse certain allocations when cloning).

(fun fact, the derive(Clone) machinery does not use that and uses Clone::clone directly due to the sheer codegen impact and thus boostrap/compile timings in rustc while not always bringing perf benefits).

@OmarTawfik OmarTawfik added this pull request to the merge queue Jun 17, 2024
@Xanewok Xanewok removed this pull request from the merge queue due to a manual request Jun 17, 2024
@Xanewok
Copy link
Contributor

Xanewok commented Jun 17, 2024

Removed from the queue in case you agree with #1015 (comment), if not, feel free to re-add it again.

@OmarTawfik OmarTawfik added this pull request to the merge queue Jun 20, 2024
Merged via the queue into NomicFoundation:main with commit 369ee30 Jun 20, 2024
1 check passed
@OmarTawfik OmarTawfik deleted the update-rust branch June 20, 2024 10:40
@github-actions github-actions bot mentioned this pull request Jun 20, 2024
github-merge-queue bot pushed a commit that referenced this pull request Aug 7, 2024
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and publish to npm
yourself or [setup this action to publish
automatically](https://github.com/changesets/action#with-publishing). If
you're not ready to do a release yet, that's fine, whenever you add more
changesets to main, this PR will be updated.


# Releases
## @nomicfoundation/slang@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

## @nomicfoundation/slang-darwin-arm64@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

## @nomicfoundation/slang-darwin-x64@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

## @nomicfoundation/slang-linux-arm64-gnu@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

## @nomicfoundation/slang-linux-arm64-musl@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

## @nomicfoundation/slang-linux-x64-gnu@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

## @nomicfoundation/slang-linux-x64-musl@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

## @nomicfoundation/slang-win32-arm64-msvc@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

## @nomicfoundation/slang-win32-ia32-msvc@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

## @nomicfoundation/slang-win32-x64-msvc@0.16.0

### Minor Changes

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: queries now ignore trivia nodes.

- [#1030](#1030)
[`7e467ce`](7e467ce)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: remove the ellipsis query `...` operator making it implicit,
add an adjacency operator `.`.

### Patch Changes

- [#1015](#1015)
[`369ee30`](369ee30)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - upgrade to rust
`1.79.0`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Compute row and column information for query parser errors.

- [#1048](#1048)
[`c408caa`](c408caa)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - support Yul
multiple variables declaration

- [#1047](#1047)
[`2b32045`](2b32045)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - inline
`MemberAccess` enum into the parent `MemberAccessExpression`

- [#1062](#1062)
[`6b05496`](6b05496)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix stack
assignments operator `=:`.

- [#1052](#1052)
[`54c9067`](54c9067)
Thanks [@ggiraldez](https://github.com/ggiraldez)! - Tree Query
Language: Improve reporting when an error occurs attempting to parse
edge labels or node kinds.

- [#1037](#1037)
[`2a74f91`](2a74f91)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix
`ExponentiationExpression` associativity before `0.8.0`

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants