diff options
author | Thomas Lively <tlively@google.com> | 2023-04-17 09:57:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 09:57:05 -0700 |
commit | addbc66ff7a42ed3b94c05e188db936b36968c9f (patch) | |
tree | a3d151ac09209899f493fefa14654c29e8916e8e /src/wasm-type.h | |
parent | cbe637f6c1517c9fb501453ba3774e73f12489d8 (diff) | |
download | binaryen-addbc66ff7a42ed3b94c05e188db936b36968c9f.tar.gz binaryen-addbc66ff7a42ed3b94c05e188db936b36968c9f.tar.bz2 binaryen-addbc66ff7a42ed3b94c05e188db936b36968c9f.zip |
Remove the nominal type system (#5672)
And since the only type system left is the standard isorecursive type system,
remove `TypeSystem` and its associated APIs entirely. Delete a few tests that
only made sense under the isorecursive type system.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index d72f5477d..ad0606d59 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -40,17 +40,6 @@ namespace wasm { -enum class TypeSystem { - Isorecursive, - Nominal, -}; - -// This should only ever be called before any Types or HeapTypes have been -// created. The default system is equirecursive. -void setTypeSystem(TypeSystem system); - -TypeSystem getTypeSystem(); - // Dangerous! Frees all types and heap types that have ever been created and // resets the type system's internal state. This is only really meant to be used // for tests. |