Compare commits

...

2 commits

Author SHA1 Message Date
Aaron Fenyes
08ec838334 Consolidate constructions from empty specification
To reduce the potential for inconsistency, we should only have one piece
of code that constructs a `SpecifiedValue` from the empty specification.
2025-03-08 15:11:37 -08:00
Aaron Fenyes
b9db7a5699 Make use declarations more compact 2025-03-08 15:02:57 -08:00
3 changed files with 3 additions and 10 deletions

View file

@ -4,10 +4,7 @@ use web_sys::{console, wasm_bindgen::JsValue};
use crate::{
engine,
AppState,
assembly::{
Assembly,
Element
}
assembly::{Assembly, Element}
};
/* DEBUG */

View file

@ -9,11 +9,7 @@ use web_sys::{
use crate::{
AppState,
assembly,
assembly::{
ElementKey,
Regulator,
RegulatorKey
},
assembly::{ElementKey, Regulator, RegulatorKey},
specified::SpecifiedValue
};

View file

@ -34,7 +34,7 @@ impl TryFrom<String> for SpecifiedValue {
fn try_from(spec: String) -> Result<Self, Self::Error> {
if spec.is_empty() {
Ok(SpecifiedValue { spec: spec, value: None })
Ok(SpecifiedValue::from_empty_spec())
} else {
spec.parse::<f64>().map(
|value| SpecifiedValue { spec: spec, value: Some(value) }