summaryrefslogtreecommitdiff
path: root/src/wasm-type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r--src/wasm-type.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h
index bf3dd69de..f5c2fb273 100644
--- a/src/wasm-type.h
+++ b/src/wasm-type.h
@@ -136,6 +136,7 @@ public:
bool isSingle() const { return isConcrete() && !isTuple(); }
bool isRef() const;
bool isFunction() const;
+ bool isData() const;
bool isException() const;
bool isNullable() const;
bool isRtt() const;
@@ -314,6 +315,7 @@ public:
constexpr bool isBasic() const { return id <= _last_basic_type; }
constexpr bool isCompound() const { return id > _last_basic_type; }
bool isFunction() const;
+ bool isData() const;
bool isSignature() const;
bool isStruct() const;
bool isArray() const;