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

Rust: Implement toString on type aliases and add docs #19130

Merged
merged 2 commits into from
Mar 27, 2025

Conversation

paldepind
Copy link
Contributor

No description provided.

@github-actions github-actions bot added the Rust Pull requests that update Rust code label Mar 27, 2025
@paldepind paldepind force-pushed the rust-type-alias-string branch from 8be531e to 0d75054 Compare March 27, 2025 10:34
@paldepind paldepind marked this pull request as ready for review March 27, 2025 10:46
@Copilot Copilot bot review requested due to automatic review settings March 27, 2025 10:46
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR updates the documentation examples for the GenericParamList and TypeAlias annotations, helping to clarify their usage now that toString functionality has been implemented.

  • Updated the GenericParamList example by replacing a placeholder with a concrete function signature.
  • Revised the TypeAlias example by providing a realistic usage snippet along with a trait definition.
Files not reviewed (7)
  • rust/ql/.generated.list: Language not supported
  • rust/ql/.gitattributes: Language not supported
  • rust/ql/lib/codeql/rust/elements/GenericParamList.qll: Language not supported
  • rust/ql/lib/codeql/rust/elements/TypeAlias.qll: Language not supported
  • rust/ql/lib/codeql/rust/elements/internal/GenericParamListImpl.qll: Language not supported
  • rust/ql/lib/codeql/rust/elements/internal/TypeAliasImpl.qll: Language not supported
  • rust/ql/test/library-tests/path-resolution/path-resolution.expected: Language not supported
Comments suppressed due to low confidence (2)

rust/schema/annotations.py:1128

  • Consider adding an example that demonstrates the use of the new toString implementation for type aliases to fully illustrate its behavior.
fn f<A, B>(a: A, b: B) {}

rust/schema/annotations.py:1713

  • Including an additional example that calls the toString method on a type alias could help clarify the intended behavior as specified in the PR title.
type Point = (u8, u8);

Tip: If you use Visual Studio Code, you can request a review from Copilot before you push from the "Source Control" tab. Learn more

class TypeAlias extends Generated::TypeAlias { }
class TypeAlias extends Generated::TypeAlias {
override string toStringImpl() {
result = concat(int i | | this.toStringPart(i), "" order by i)
Copy link
Contributor

Choose a reason for hiding this comment

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

I don't think the , "" bit is needed?

@paldepind paldepind merged commit e2ed848 into github:main Mar 27, 2025
17 checks passed
@paldepind paldepind deleted the rust-type-alias-string branch March 27, 2025 13:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants