类 NoOpRebuildOperator
- java.lang.Object
-
- proguard.analysis.cpa.bam.NoOpRebuildOperator
-
- 所有已实现的接口:
RebuildOperator
public class NoOpRebuildOperator extends java.lang.Object implements RebuildOperator
ThisRebuildOperatorreturns the originalAbstractStatewithout performing any rebuilding.
-
-
构造器概要
构造器 构造器 说明 NoOpRebuildOperator()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 <ContentT extends AbstractState<ContentT>>
JvmAbstractState<ContentT>rebuild(JvmAbstractState<ContentT> predecessorCallState, JvmAbstractState<ContentT> expandedOutputState)Performs the rebuilding of the return state.
-
-
-
方法详细资料
-
rebuild
public <ContentT extends AbstractState<ContentT>> JvmAbstractState<ContentT> rebuild(JvmAbstractState<ContentT> predecessorCallState, JvmAbstractState<ContentT> expandedOutputState)
从接口复制的说明:RebuildOperatorPerforms the rebuilding of the return state.- 指定者:
rebuild在接口中RebuildOperator- 类型参数:
ContentT- The content of the jvm states. For example, this can be aSetAbstractStateof taints for taint analysis or aValueAbstractStatefor value analysis.- 参数:
predecessorCallState- the state of the caller at the moment of the procedure callexpandedOutputState- the output ofExpandOperator- 返回:
- The state of the caller after the procedure call
-
-