Add support for non Specifier enum SuffixSpecs in AST_Fn and parsing (Thanks Unreal)

This commit is contained in:
2025-01-29 01:29:55 -05:00
parent 16fc3fa379
commit ce2be411d7
7 changed files with 34 additions and 3 deletions

View File

@@ -400,7 +400,7 @@ struct AST
};
union {
Code NextVar; // Variable; Possible way to handle comma separated variables declarations. ( , NextVar->Specs NextVar->Name NextVar->ArrExpr = NextVar->Value )
Code SuffixSpecs; // Only used with typenames, to store the function suffix if typename is function signature. ( May not be needed )
Code SuffixSpecs; // Typename, Function (Thanks Unreal)
Code PostNameMacro; // Only used with parameters for specifically UE_REQUIRES (Thanks Unreal)
};
};