Returns whether this function's type is one that "escapes" the current module, meaning that the function is exported, used in `ref.func`, used in a table, etc.
(&self)
| 759 | /// module, meaning that the function is exported, used in `ref.func`, used |
| 760 | /// in a table, etc. |
| 761 | pub fn is_escaping(&self) -> bool { |
| 762 | !self.func_ref.is_reserved_value() |
| 763 | } |
| 764 | } |
| 765 | |
| 766 | /// Index into the funcref table within a VMContext for a function. |
no test coverage detected