@@ -56,44 +56,39 @@ pub trait Delegate {
5656 // The value found at `cmt` is either copied or moved, depending
5757 // on mode.
5858 fn consume ( & mut self ,
59- _consume_id : ast:: NodeId ,
60- _consume_span : Span ,
61- _cmt : mc:: cmt ,
62- _mode : ConsumeMode )
63- { }
59+ consume_id : ast:: NodeId ,
60+ consume_span : Span ,
61+ cmt : mc:: cmt ,
62+ mode : ConsumeMode ) ;
6463
6564 // The value found at `cmt` is either copied or moved via the
6665 // pattern binding `consume_pat`, depending on mode.
6766 fn consume_pat ( & mut self ,
68- _consume_pat : & ast:: Pat ,
69- _cmt : mc:: cmt ,
70- _mode : ConsumeMode )
71- { }
67+ consume_pat : & ast:: Pat ,
68+ cmt : mc:: cmt ,
69+ mode : ConsumeMode ) ;
7270
7371 // The value found at `borrow` is being borrowed at the point
7472 // `borrow_id` for the region `loan_region` with kind `bk`.
7573 fn borrow ( & mut self ,
76- _borrow_id : ast:: NodeId ,
77- _borrow_span : Span ,
78- _cmt : mc:: cmt ,
79- _loan_region : ty:: Region ,
80- _bk : ty:: BorrowKind ,
81- _loan_cause : LoanCause )
82- { }
74+ borrow_id : ast:: NodeId ,
75+ borrow_span : Span ,
76+ cmt : mc:: cmt ,
77+ loan_region : ty:: Region ,
78+ bk : ty:: BorrowKind ,
79+ loan_cause : LoanCause ) ;
8380
8481 // The local variable `id` is declared but not initialized.
8582 fn decl_without_init ( & mut self ,
8683 _id : ast:: NodeId ,
87- _span : Span )
88- { }
84+ _span : Span ) ;
8985
9086 // The path at `cmt` is being assigned to.
9187 fn mutate ( & mut self ,
92- _assignment_id : ast:: NodeId ,
93- _assignment_span : Span ,
94- _assignee_cmt : mc:: cmt ,
95- _mode : MutateMode )
96- { }
88+ assignment_id : ast:: NodeId ,
89+ assignment_span : Span ,
90+ assignee_cmt : mc:: cmt ,
91+ mode : MutateMode ) ;
9792}
9893
9994///////////////////////////////////////////////////////////////////////////
0 commit comments