-
-
Notifications
You must be signed in to change notification settings - Fork 375
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: dtolnay/syn
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.37
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: dtolnay/syn
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.0.38
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 8 commits
- 7 files changed
- 2 contributors
Commits on Sep 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 92fd50e - Browse repository at this point
Copy the full SHA 92fd50eView commit details
Commits on Oct 2, 2023
-
Ignore single_match_else pedantic clippy lint in test
warning: you seem to be trying to use `match` for destructuring a single pattern. Consider using `if let` --> tests/test_lit.rs:16:5 | 16 | / match TokenStream::from_str(s) 17 | | .unwrap() 18 | | .into_iter() 19 | | .next() ... | 23 | | _ => panic!(), 24 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match_else = note: `-W clippy::single-match-else` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::single_match_else)]` help: try | 16 ~ if let TokenTree::Literal(lit) = TokenStream::from_str(s) 17 + .unwrap() 18 + .into_iter() 19 + .next() 20 + .unwrap() { Lit::new(lit) } else { panic!() } |Configuration menu - View commit details
-
Copy full SHA for 258e9e8 - Browse repository at this point
Copy the full SHA 258e9e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 137ae33 - Browse repository at this point
Copy the full SHA 137ae33View commit details -
Configuration menu - View commit details
-
Copy full SHA for 67ab64f - Browse repository at this point
Copy the full SHA 67ab64fView commit details -
Resolve single_match_else pedantic clippy lint in code generator
warning: you seem to be trying to use `match` for destructuring a single pattern. Consider using `if let` --> src/parse.rs:146:33 | 146 | let punct = match introspect_type(last_arg(&last.arguments), lookup) { | _________________________________^ 147 | | types::Type::Token(s) => s, 148 | | _ => panic!(), 149 | | }; | |_____________________^ help: try: `if let types::Type::Token(s) = introspect_type(last_arg(&last.arguments), lookup) { s } else { panic!() }` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_match_else = note: `-W clippy::single-match-else` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::single_match_else)]`Configuration menu - View commit details
-
Copy full SHA for 7313d24 - Browse repository at this point
Copy the full SHA 7313d24View commit details
Commits on Oct 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6701e60 - Browse repository at this point
Copy the full SHA 6701e60View commit details -
Merge pull request #1518 from Vanille-N/master
Absolute path to `bool` in `custom_punctuation.rs`
Configuration menu - View commit details
-
Copy full SHA for abd2c21 - Browse repository at this point
Copy the full SHA abd2c21View commit details -
Configuration menu - View commit details
-
Copy full SHA for 43632bf - Browse repository at this point
Copy the full SHA 43632bfView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 2.0.37...2.0.38