Skip to content

Commit

Permalink
test comments
Browse files Browse the repository at this point in the history
  • Loading branch information
k88hudson-cfa committed Oct 22, 2024
1 parent db2920d commit b33f3a7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/people.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ type ContextCallback = dyn FnOnce(&mut Context);
// The purpose of this trait is to allow us to store a vector of different PersonProperties
// in an object safe way, and use them to emit change events.
pub trait PersonPropertyHolder {
// Given a context, person, and a Vec, a callback is added to that Vec which
// can later be called with a new context to emit a change event
// Adds a callback to callback_vec which can later be called with a new context
// to emit a change event
fn add_event_callback(
&self,
context: &mut Context,
Expand Down Expand Up @@ -754,7 +754,8 @@ mod test {
assert!(*flag.borrow());
}

// TODO<[email protected]> This currently doesn't work
// TODO([email protected]): Nested derived properties don't currently work; we should
// probably either fix this or disallow it.
#[ignore]
#[test]
fn get_derived_property_dependent_on_another_derived() {
Expand Down

0 comments on commit b33f3a7

Please sign in to comment.