File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,6 @@ class Type {
170170 bool isSignature () const ;
171171 bool isStruct () const ;
172172 bool isArray () const ;
173- bool isException () const ;
174173 bool isString () const ;
175174 bool isDefaultable () const ;
176175
@@ -377,7 +376,6 @@ class HeapType {
377376 bool isContinuation () const ;
378377 bool isStruct () const ;
379378 bool isArray () const ;
380- bool isException () const ;
381379 bool isString () const ;
382380 bool isBottom () const ;
383381 bool isOpen () const ;
Original file line number Diff line number Diff line change @@ -814,10 +814,6 @@ bool Type::isStruct() const { return isRef() && getHeapType().isStruct(); }
814814
815815bool Type::isArray () const { return isRef () && getHeapType ().isArray (); }
816816
817- bool Type::isException () const {
818- return isRef () && getHeapType ().isException ();
819- }
820-
821817bool Type::isString () const { return isRef () && getHeapType ().isString (); }
822818
823819bool Type::isDefaultable () const {
@@ -1148,8 +1144,6 @@ bool HeapType::isArray() const {
11481144 }
11491145}
11501146
1151- bool HeapType::isException () const { return *this == HeapType::exn; }
1152-
11531147bool HeapType::isString () const { return *this == HeapType::string; }
11541148
11551149bool HeapType::isBottom () const {
You can’t perform that action at this time.
0 commit comments