- Removed notes
- Removed superfluous uses of `where`
This commit is contained in:
2023-05-23 18:39:45 +01:00
parent 8bb82b8ead
commit e99ade92ba
63 changed files with 76 additions and 1973 deletions

View File

@@ -54,7 +54,9 @@ pub fn _exprv(exprv: &[ast::Expr])
struct Context<'a> { names: Substack<'a, Token<Vec<Token<String>>>> }
impl<'a> Context<'a> {
fn w_name<'b>(&'b self, name: Token<Vec<Token<String>>>) -> Context<'b> where 'a: 'b {
fn w_name<'b>(&'b self,
name: Token<Vec<Token<String>>>
) -> Context<'b> where 'a: 'b {
Context { names: self.names.push(name) }
}