+ added extra values to TWasmNameSubsectionType from the extended name section

proposal and the gc proposal
This commit is contained in:
Nikolay Nikolov 2024-09-19 06:35:43 +03:00
parent b1a18f5690
commit ffd461860b

View File

@ -73,9 +73,18 @@ type
TWasmCustomDebugSectionType = wcstDebugFrame..wcstDebugStr;
TWasmNameSubsectionType = (
wnstModuleName = 0,
wnstModuleName = 0,
wnstFunctionNames = 1,
wnstLocalNames = 2
wnstLocalNames = 2,
wnstLabelNames = 3, { extended name section }
wnstTypeNames = 4, { gc proposal }
wnstTableNames = 5, { extended name section }
wnstMemoryNames = 6, { extended name section }
wnstGlobalNames = 7, { extended name section }
wnstElemNames = 8, { extended name section }
wnstDataNames = 9, { extended name section }
wnstFieldNames = 10, { gc proposal }
wnstTagNames = 11 { extended name section }
);