We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f5942e commit 5051295Copy full SHA for 5051295
1 file changed
crates/api/src/values.rs
@@ -141,7 +141,8 @@ impl Val {
141
// TODO: need to implement this once we actually finalize what
142
// `anyref` will look like and it's actually implemented to pass it
143
// to compiled wasm as well.
144
- Val::AnyRef(_) => false,
+ Val::AnyRef(AnyRef::Ref(_)) | Val::AnyRef(AnyRef::Other(_)) => false,
145
+ Val::AnyRef(AnyRef::Null) => true,
146
147
// Integers have no association with any particular store, so
148
// they're always considered as "yes I came from that store",
0 commit comments