Rename anyref to externref across the board

This commit is contained in:
Nick Fitzgerald
2020-05-20 11:55:30 -07:00
parent 5c39b74eb8
commit f28b3738ee
25 changed files with 151 additions and 130 deletions

View File

@@ -44,9 +44,9 @@ pub fn dummy_value(val_ty: &ValType) -> Result<Val, Trap> {
"dummy_value: unsupported function return type: v128".to_string(),
))
}
ValType::AnyRef => {
ValType::ExternRef => {
return Err(Trap::new(
"dummy_value: unsupported function return type: anyref".to_string(),
"dummy_value: unsupported function return type: externref".to_string(),
))
}
ValType::FuncRef => {