Initial commit
This commit is contained in:
44
sources/org/aspectj/runtime/internal/AroundClosure.java
Normal file
44
sources/org/aspectj/runtime/internal/AroundClosure.java
Normal file
@@ -0,0 +1,44 @@
|
||||
package org.aspectj.runtime.internal;
|
||||
|
||||
import org.aspectj.lang.ProceedingJoinPoint;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public abstract class AroundClosure {
|
||||
protected int bitflags = 1048576;
|
||||
protected Object[] preInitializationState;
|
||||
protected Object[] state;
|
||||
|
||||
public AroundClosure() {
|
||||
}
|
||||
|
||||
public int getFlags() {
|
||||
return this.bitflags;
|
||||
}
|
||||
|
||||
public Object[] getPreInitializationState() {
|
||||
return this.preInitializationState;
|
||||
}
|
||||
|
||||
public Object[] getState() {
|
||||
return this.state;
|
||||
}
|
||||
|
||||
public ProceedingJoinPoint linkClosureAndJoinPoint() {
|
||||
ProceedingJoinPoint proceedingJoinPoint = (ProceedingJoinPoint) this.state[r0.length - 1];
|
||||
proceedingJoinPoint.a(this);
|
||||
return proceedingJoinPoint;
|
||||
}
|
||||
|
||||
public abstract Object run(Object[] objArr) throws Throwable;
|
||||
|
||||
public AroundClosure(Object[] objArr) {
|
||||
this.state = objArr;
|
||||
}
|
||||
|
||||
public ProceedingJoinPoint linkClosureAndJoinPoint(int i) {
|
||||
ProceedingJoinPoint proceedingJoinPoint = (ProceedingJoinPoint) this.state[r0.length - 1];
|
||||
proceedingJoinPoint.a(this);
|
||||
this.bitflags = i;
|
||||
return proceedingJoinPoint;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user