reorganize testing

This commit is contained in:
Simon Gardling
2022-05-11 15:19:22 -04:00
parent d9100c64cc
commit 7109151b0f
17 changed files with 585 additions and 596 deletions

View File

@@ -3,7 +3,7 @@ use crate::function_entry::FunctionEntry;
use crate::widgets::{widgets_ontop, Movement};
use egui::{Button, Id, Key, Modifiers, TextEdit, WidgetText};
use emath::vec2;
use parsing::suggestions::Hint;
use parsing::Hint;
use std::ops::BitXorAssign;
use uuid::Uuid;
@@ -204,7 +204,9 @@ impl FunctionManager {
#[inline]
pub fn len(&self) -> usize { self.functions.len() }
#[inline]
pub fn get_entries_mut(&mut self) -> &mut Vec<(Id, FunctionEntry)> { &mut self.functions }
#[inline]
pub fn get_entries(&self) -> &Vec<(Id, FunctionEntry)> { &self.functions }
}