Class AbstractFunctionInvokation
- java.lang.Object
-
- org.benf.cfr.reader.bytecode.analysis.parse.expression.AbstractExpression
-
- org.benf.cfr.reader.bytecode.analysis.parse.expression.AbstractFunctionInvokation
-
- All Implemented Interfaces:
HasByteCodeLoc
,Expression
,DeepCloneable<Expression>
,ComparableUnderEC
,Dumpable
,DumpableWithPrecedence
,TypeUsageCollectable
- Direct Known Subclasses:
AbstractMemberFunctionInvokation
,StaticFunctionInvokation
public abstract class AbstractFunctionInvokation extends AbstractExpression
-
-
Field Summary
Fields Modifier and Type Field Description private ConstantPoolEntryMethodRef
function
private MethodPrototype
methodPrototype
-
Constructor Summary
Constructors Constructor Description AbstractFunctionInvokation(BytecodeLoc loc, ConstantPoolEntryMethodRef function, InferredJavaType inferredJavaType)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
applyExpressionRewriterToArgs(ExpressionRewriter expressionRewriter, SSAIdentifiers ssaIdentifiers, StatementContainer statementContainer, ExpressionRewriterFlags flags)
abstract java.util.List<Expression>
getArgs()
abstract java.util.List<JavaTypeInstance>
getExplicitGenerics()
(package private) java.lang.String
getFixedName()
ConstantPoolEntryMethodRef
getFunction()
MethodPrototype
getMethodPrototype()
java.lang.String
getName()
boolean
isValidStatement()
abstract void
setExplicitGenerics(java.util.List<JavaTypeInstance> types)
-
Methods inherited from class org.benf.cfr.reader.bytecode.analysis.parse.expression.AbstractExpression
addLoc, canPushDownInto, canThrow, collectTypeUsages, dump, dumpInner, dumpWithOuterPrecedence, equals, getComputedLiteral, getInferredJavaType, getLoc, getPrecedence, isSimple, outerDeepClone, pushDown, toString, visit
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.benf.cfr.reader.bytecode.analysis.parse.rewriters.DeepCloneable
deepClone
-
Methods inherited from interface org.benf.cfr.reader.bytecode.analysis.parse.Expression
applyExpressionRewriter, applyReverseExpressionRewriter, collectUsedLValues, equivalentUnder, replaceSingleUsageLValues
-
Methods inherited from interface org.benf.cfr.reader.bytecode.analysis.loc.HasByteCodeLoc
getCombinedLoc
-
-
-
-
Field Detail
-
function
private final ConstantPoolEntryMethodRef function
-
methodPrototype
private final MethodPrototype methodPrototype
-
-
Constructor Detail
-
AbstractFunctionInvokation
AbstractFunctionInvokation(BytecodeLoc loc, ConstantPoolEntryMethodRef function, InferredJavaType inferredJavaType)
-
-
Method Detail
-
applyExpressionRewriterToArgs
public abstract void applyExpressionRewriterToArgs(ExpressionRewriter expressionRewriter, SSAIdentifiers ssaIdentifiers, StatementContainer statementContainer, ExpressionRewriterFlags flags)
-
setExplicitGenerics
public abstract void setExplicitGenerics(java.util.List<JavaTypeInstance> types)
-
getExplicitGenerics
public abstract java.util.List<JavaTypeInstance> getExplicitGenerics()
-
getFunction
public ConstantPoolEntryMethodRef getFunction()
-
getMethodPrototype
public MethodPrototype getMethodPrototype()
-
getName
public java.lang.String getName()
-
getFixedName
java.lang.String getFixedName()
-
isValidStatement
public boolean isValidStatement()
- Specified by:
isValidStatement
in interfaceExpression
- Overrides:
isValidStatement
in classAbstractExpression
-
getArgs
public abstract java.util.List<Expression> getArgs()
-
-