Uses of Class
org.benf.cfr.reader.bytecode.analysis.parse.expression.AbstractAssignmentExpression
-
-
Uses of AbstractAssignmentExpression in org.benf.cfr.reader.bytecode.analysis.parse.expression
Subclasses of AbstractAssignmentExpression in org.benf.cfr.reader.bytecode.analysis.parse.expression Modifier and Type Class Description class
AbstractMutatingAssignmentExpression
class
ArithmeticMutationOperation
class
ArithmeticPostMutationOperation
(eg) x >>= 3, x++class
ArithmeticPreMutationOperation
class
AssignmentExpression
-
Uses of AbstractAssignmentExpression in org.benf.cfr.reader.bytecode.analysis.parse.statement
Fields in org.benf.cfr.reader.bytecode.analysis.parse.statement declared as AbstractAssignmentExpression Modifier and Type Field Description private AbstractAssignmentExpression
AssignmentPreMutation. rvalue
Fields in org.benf.cfr.reader.bytecode.analysis.parse.statement with type parameters of type AbstractAssignmentExpression Modifier and Type Field Description private java.util.List<AbstractAssignmentExpression>
ForStatement. assignments
Methods in org.benf.cfr.reader.bytecode.analysis.parse.statement that return AbstractAssignmentExpression Modifier and Type Method Description abstract AbstractAssignmentExpression
AbstractAssignment. getInliningExpression()
AbstractAssignmentExpression
AssignmentPreMutation. getInliningExpression()
AbstractAssignmentExpression
AssignmentSimple. getInliningExpression()
Methods in org.benf.cfr.reader.bytecode.analysis.parse.statement that return types with arguments of type AbstractAssignmentExpression Modifier and Type Method Description java.util.List<AbstractAssignmentExpression>
ForStatement. getAssignments()
Method parameters in org.benf.cfr.reader.bytecode.analysis.parse.statement with type arguments of type AbstractAssignmentExpression Modifier and Type Method Description void
WhileStatement. replaceWithForLoop(AssignmentSimple initial, java.util.List<AbstractAssignmentExpression> assignment)
Constructors in org.benf.cfr.reader.bytecode.analysis.parse.statement with parameters of type AbstractAssignmentExpression Constructor Description AssignmentPreMutation(BytecodeLoc loc, LValue lvalue, AbstractAssignmentExpression rvalue)
Constructor parameters in org.benf.cfr.reader.bytecode.analysis.parse.statement with type arguments of type AbstractAssignmentExpression Constructor Description ForStatement(BytecodeLoc loc, ConditionalExpression conditionalExpression, BlockIdentifier blockIdentifier, AssignmentSimple initial, java.util.List<AbstractAssignmentExpression> assignments)
-
Uses of AbstractAssignmentExpression in org.benf.cfr.reader.bytecode.analysis.parse.utils
Fields in org.benf.cfr.reader.bytecode.analysis.parse.utils declared as AbstractAssignmentExpression Modifier and Type Field Description private AbstractAssignmentExpression
LValueAssignmentExpressionRewriter. lValueReplacement
Constructors in org.benf.cfr.reader.bytecode.analysis.parse.utils with parameters of type AbstractAssignmentExpression Constructor Description LValueAssignmentExpressionRewriter(LValue lValue, AbstractAssignmentExpression lValueReplacement, Op03SimpleStatement source)
-
Uses of AbstractAssignmentExpression in org.benf.cfr.reader.bytecode.analysis.structured.statement
Fields in org.benf.cfr.reader.bytecode.analysis.structured.statement with type parameters of type AbstractAssignmentExpression Modifier and Type Field Description private java.util.List<AbstractAssignmentExpression>
StructuredFor. assignments
private java.util.List<AbstractAssignmentExpression>
UnstructuredFor. assignments
Constructor parameters in org.benf.cfr.reader.bytecode.analysis.structured.statement with type arguments of type AbstractAssignmentExpression Constructor Description StructuredFor(BytecodeLoc loc, ConditionalExpression condition, AssignmentSimple initial, java.util.List<AbstractAssignmentExpression> assignments, Op04StructuredStatement body, BlockIdentifier block)
UnstructuredFor(BytecodeLoc loc, ConditionalExpression condition, BlockIdentifier blockIdentifier, AssignmentSimple initial, java.util.List<AbstractAssignmentExpression> assignments)
-