mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
Attach handling of "this" to ProtoParameter
This commit is contained in:
parent
bcc0f7fe38
commit
004a99bb87
29 changed files with 338 additions and 149 deletions
|
@ -224,6 +224,16 @@ void Symbol::checkSizeTypeLock(void)
|
|||
dispflags |= size_typelock;
|
||||
}
|
||||
|
||||
/// \param val is \b true if we are the "this" pointer
|
||||
void Symbol::setThisPointer(bool val)
|
||||
|
||||
{
|
||||
if (val)
|
||||
dispflags |= is_this_ptr;
|
||||
else
|
||||
dispflags &= ~((uint4)is_this_ptr);
|
||||
}
|
||||
|
||||
/// The name for a Symbol can be unspecified. See ScopeInternal::buildUndefinedName
|
||||
/// \return \b true if the name of \b this is undefined
|
||||
bool Symbol::isNameUndefined(void) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue