Generalize constraints to observables #48
2 changed files with 2 additions and 9 deletions
|
@ -4,10 +4,7 @@ use web_sys::{console, wasm_bindgen::JsValue};
|
|||
use crate::{
|
||||
engine,
|
||||
AppState,
|
||||
assembly::{
|
||||
Assembly,
|
||||
Element
|
||||
}
|
||||
assembly::{Assembly, Element}
|
||||
};
|
||||
glen marked this conversation as resolved
|
||||
|
||||
/* DEBUG */
|
||||
|
|
|
@ -9,11 +9,7 @@ use web_sys::{
|
|||
use crate::{
|
||||
AppState,
|
||||
assembly,
|
||||
assembly::{
|
||||
ElementKey,
|
||||
Regulator,
|
||||
RegulatorKey
|
||||
},
|
||||
assembly::{ElementKey, Regulator, RegulatorKey},
|
||||
specified::SpecifiedValue
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue
In assembly.rs, you put all of the sub-namespaces under a top-level item on a single line, like
whereas here this has been spread across three lines. They should be consistent in format. If it's the same to you, I prefer a formats that balances the desire for fewer linebreaks (to keep a good amount of information visible on screen at one time) with the need for clear organization and readability (which too few linebreaks can engender). That is, I prefer the assembly.rs format.
Good catch. My convention has been to start with each
use
declaration on one line. If that line gets too long, I switch the outermost braced list from space-separated to newline-separated. Then I do the same thing recursively at lower list levels. Theuse
declarations you noticed break this convention; I've corrected them In commitb9db7a5
. I think the convention is followed everywhere else, but I'll keep an eye on it whenever I reviseuse
declarations in future commits.