Compare commits

..

No commits in common. "5f81ac41db6a0b30f41239f78442aca7a615fa5a" and "7e958c56583451fed9042bb1eaa284676fc5b7ea" have entirely different histories.

2 changed files with 0 additions and 19 deletions

View File

@ -71,10 +71,6 @@ jobs:
# mv doveralls_linux_travis doveralls
# chmod +x doveralls
dub fetch doveralls
# Thank you Indian fella, you receive 1 satoshi (https://github.com/orgs/community/discussions/120966#discussioncomment-9211925)
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
sudo apt update
sudo apt install libcurl4-openssl-dev

View File

@ -2029,21 +2029,6 @@ public final class Parser
parentToContainer(container, [varAssExp]);
}
/**
* If we have a `PointerDereferenceAssignment`
* then we must parent its left-hand and right-hand
* side expressions (the expression the address
* is derived from) and (the expression being
* assigned)
*/
else if(cast(PointerDereferenceAssignment)statement)
{
PointerDereferenceAssignment ptrDerefAss = cast(PointerDereferenceAssignment)statement;
Expression addrExp = ptrDerefAss.getPointerExpression();
Expression assExp = ptrDerefAss.getExpression();
parentToContainer(container, [addrExp, assExp]);
}
/**
* If we have a `FunctionCall`
* expression