diff options
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index 4c050ed35..7b63adf9d 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -594,6 +594,10 @@ struct TypeBuilder { SelfSupertype, // The declared supertype of a type is invalid. InvalidSupertype, + // The declared supertype is an invalid forward reference. + ForwardSupertypeReference, + // A child of the type is an invalid forward reference. + ForwardChildReference, }; struct Error { |