new method, getMethodSigs. spits out callback proto-functions

This commit is contained in:
AzaezelX 2023-02-15 17:38:45 -06:00
parent f903140d22
commit a8e74787b7
3 changed files with 87 additions and 0 deletions

View file

@ -164,6 +164,10 @@ public:
/// Return a full prototype string for the function including return type, function name,
/// and arguments.
String getPrototypeString() const;
/// Return a minimalized prototype string for the function including return type, function name,
/// and arguments.
String getPrototypeSig() const;
};
Entry* mEntryList;