mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Make tidy aware of Rust multiline strings
As a result of tighter and more correct handling of character literals, this now catches a few kinds of syntax involving lifetimes that were previously missed, so those have been updated.
This commit is contained in:
parent
5c797d1943
commit
c9dafda03a
6 changed files with 55 additions and 15 deletions
|
@ -137,7 +137,7 @@ impl<'a> InorderFlowTraversal for ResolveGeneratedContent<'a> {
|
|||
}
|
||||
|
||||
/// The object that mutates the generated content fragments.
|
||||
struct ResolveGeneratedContentFragmentMutator<'a,'b:'a> {
|
||||
struct ResolveGeneratedContentFragmentMutator<'a, 'b: 'a> {
|
||||
/// The traversal.
|
||||
traversal: &'a mut ResolveGeneratedContent<'b>,
|
||||
/// The level we're at in the flow tree.
|
||||
|
@ -148,7 +148,7 @@ struct ResolveGeneratedContentFragmentMutator<'a,'b:'a> {
|
|||
incremented: bool,
|
||||
}
|
||||
|
||||
impl<'a,'b> ResolveGeneratedContentFragmentMutator<'a,'b> {
|
||||
impl<'a, 'b> ResolveGeneratedContentFragmentMutator<'a, 'b> {
|
||||
fn mutate_fragment(&mut self, fragment: &mut Fragment) {
|
||||
// We only reset and/or increment counters once per flow. This avoids double-incrementing
|
||||
// counters on list items (once for the main fragment and once for the marker).
|
||||
|
|
|
@ -69,7 +69,7 @@ impl<T> Clone for PersistentList<T> where T: Send + Sync {
|
|||
}
|
||||
}
|
||||
|
||||
pub struct PersistentListIterator<'a,T> where T: 'a + Send + Sync {
|
||||
pub struct PersistentListIterator<'a, T> where T: 'a + Send + Sync {
|
||||
entry: Option<&'a PersistentListEntry<T>>,
|
||||
}
|
||||
|
||||
|
|
|
@ -163,7 +163,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnrootedPass {
|
|||
}
|
||||
}
|
||||
|
||||
struct FnDefVisitor<'a, 'b: 'a, 'tcx: 'a+'b> {
|
||||
struct FnDefVisitor<'a, 'b: 'a, 'tcx: 'a + 'b> {
|
||||
cx: &'a LateContext<'b, 'tcx>,
|
||||
in_new_function: bool,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue