Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
gpwclark committed Jan 31, 2025
1 parent 42826b9 commit 8ea679b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 90 deletions.
3 changes: 1 addition & 2 deletions bridge_adapters/src/lisp_adapters/primitives.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ impl SlFromRef<'_, Value> for bool {
Value::True => Ok(true),
Value::False => Ok(false),
Value::Nil => Ok(false),
//TODO XXX should undefined be included here? sls what say you?
Value::Undefined => Ok(false),
Value::Undefined => panic!("Undefined is the default initialized state of a value and its presence in actual code is a VM logical error."),
_ => Ok(true),
}
}
Expand Down
88 changes: 0 additions & 88 deletions test-monitor-fs-changes.slosh

This file was deleted.

0 comments on commit 8ea679b

Please sign in to comment.