Lines Matching defs:notes
118 let mut notes = vec![];
120 notes.push(format!(
128 writeln!(f, "{}", notes.join("\n"))?;
223 if let Some(notes) = self.notate_line(i) {
224 notated.push_str(¬es);
231 /// Return notes for the line indexed at `i` (zero-based). If there are no
240 let mut notes = String::new();
242 notes.push(' ');
247 notes.push(' ');
252 notes.push('^');
256 Some(notes)