Package sootup.interceptors
Class StaticSingleAssignmentFormer
java.lang.Object
sootup.interceptors.StaticSingleAssignmentFormer
- All Implemented Interfaces:
BodyInterceptor
In Static Single Assignment Form, each variable be assigned exactly once, and every variable be
defined before it is used.
- Author:
- Zun Wang
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidinterceptBody(@NonNull Body.BodyBuilder builder, @NonNull View view) Takes a BodyBuilder and may apply a transformation to it, for example removing unused local variables.
-
Constructor Details
-
StaticSingleAssignmentFormer
public StaticSingleAssignmentFormer()
-
-
Method Details
-
interceptBody
Description copied from interface:BodyInterceptorTakes a BodyBuilder and may apply a transformation to it, for example removing unused local variables.- Specified by:
interceptBodyin interfaceBodyInterceptor
-