Merge pull request #8644 from ethereum/refactor-lValueRequested

Replaced all instances of lValueRequested to willBeWrittenTo
This commit is contained in:
chriseth
2020-04-20 15:03:50 +02:00
committed by GitHub
12 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -244,7 +244,7 @@ struct ExpressionAnnotation: ASTAnnotation
/// Whether it is an LValue (i.e. something that can be assigned to).
bool isLValue = false;
/// Whether the expression is used in a context where the LValue is actually required.
bool lValueRequested = false;
bool willBeWrittenTo = false;
/// Whether the expression is an lvalue that is only assigned.
/// Would be false for --, ++, delete, +=, -=, ....
bool lValueOfOrdinaryAssignment = false;