diff --git a/README.md b/README.md index 45157350..ddaa6c4e 100644 --- a/README.md +++ b/README.md @@ -1021,9 +1021,12 @@ Note that these are pseudo instructions enabling Binaryen to reason about multip #### [Reference types operations](https://github.com/WebAssembly/reference-types/blob/master/proposals/reference-types/Overview.md) 🦄 -* Module#ref.**null**(): `ExpressionRef` +* Module#ref.**null**(type: `Type`): `ExpressionRef` * Module#ref.**is_null**(value: `ExpressionRef`): `ExpressionRef` -* Module#ref.**func**(name: `string`): `ExpressionRef` +* Module#ref.**as_non_null**(value: `ExpressionRef`): `ExpressionRef` +* Module#ref.**func**(name: `string`, type: `Type`): `ExpressionRef` +* Module#ref.**i31**(value: `ExpressionRef`): `ExpressionRef` +* Module#ref.**eq**(left: `ExpressionRef`, right: `ExpressionRef`): `ExpressionRef` #### [Bulk memory operations](https://github.com/WebAssembly/bulk-memory-operations/blob/master/proposals/bulk-memory-operations/Overview.md) 🦄 diff --git a/index.d.ts b/index.d.ts index 3ecfb063..63d391aa 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1742,9 +1742,6 @@ declare module binaryen { ref: { null(type: Type): ExpressionRef; is_null(value: ExpressionRef): ExpressionRef; - is_func(value: ExpressionRef): ExpressionRef; - is_data(value: ExpressionRef): ExpressionRef; - is_i31(value: ExpressionRef): ExpressionRef; as_non_null(value: ExpressionRef): ExpressionRef; func(name: string, type: Type): ExpressionRef; i31(value: ExpressionRef): ExpressionRef;