summaryrefslogtreecommitdiff
path: root/test/example/c-api-kitchen-sink.txt
diff options
context:
space:
mode:
authordcode <dcode@dcode.io>2022-11-03 17:08:46 +0100
committerGitHub <noreply@github.com>2022-11-03 09:08:46 -0700
commitfe78fe116a67ae37d0e6d4597832042d3cbff230 (patch)
tree2d9e933a13e92402051237ab39b73c5175c8030e /test/example/c-api-kitchen-sink.txt
parent201e5ceae6f092f7a4f34d6e681a9887812f0035 (diff)
downloadbinaryen-fe78fe116a67ae37d0e6d4597832042d3cbff230.tar.gz
binaryen-fe78fe116a67ae37d0e6d4597832042d3cbff230.tar.bz2
binaryen-fe78fe116a67ae37d0e6d4597832042d3cbff230.zip
[C API] Add APIs to inspect compound heap types (#5195)
Adds C APIs to inspect compound struct, array and signature heap types: Obtain field types, field packed types and field mutabilities of struct types: BinaryenStructTypeGetNumFields (to iterate) BinaryenStructTypeGetFieldType BinaryenStructTypeGetFieldPackedType BinaryenStructTypeIsFieldMutable Obtain element type, element packed type and element mutability of array types: BinaryenArrayTypeGetElementType BinaryenArrayTypeGetElementPackedType BinaryenArrayTypeIsElementMutable Obtain parameter and result types of signature types: BinaryenSignatureTypeGetParams BinaryenSignatureTypeGetResults
Diffstat (limited to 'test/example/c-api-kitchen-sink.txt')
-rw-r--r--test/example/c-api-kitchen-sink.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/example/c-api-kitchen-sink.txt b/test/example/c-api-kitchen-sink.txt
index 0d7ef581b..408c06444 100644
--- a/test/example/c-api-kitchen-sink.txt
+++ b/test/example/c-api-kitchen-sink.txt
@@ -3041,7 +3041,7 @@ module with recursive GC types:
(type $SomeStruct (struct_subtype (field $SomeField (mut (ref null $SomeStruct))) data))
(type $SomeSignature (func_subtype (param (ref null $SomeSignature) (ref null $SomeArray)) (result (ref null $SomeSignature)) func))
(type $none_=>_none (func_subtype func))
- (type $SomeSubStruct (struct_subtype (field $SomeField (mut (ref null $SomeStruct))) (field $SomePackedField (mut i8)) $SomeStruct))
+ (type $SomeSubStruct (struct_subtype (field $SomeField (mut (ref null $SomeStruct))) (field $SomePackedField i8) $SomeStruct))
(func $test (type $none_=>_none)
(local $0 (ref null $SomeArray))
(local $1 (ref null $SomeStruct))