move matchers to standalone package

This commit is contained in:
金戟 2020-11-16 19:11:31 +08:00
parent 809b1aa57f
commit f63b694b0c
4 changed files with 4 additions and 3 deletions

View File

@ -135,7 +135,7 @@ public class SourceClassHandler extends BaseClassHandler {
break;
case Opcodes.INVOKEVIRTUAL:
case Opcodes.INVOKEINTERFACE:
// virtual and interface invoke implicitly eat 1 more stack and return 1 more value, deuce
// virtual and interface invoke implicitly eat 1 more stack and return 1 value, deuce
stackLevel += ClassUtil.getParameterTypes(((MethodInsnNode)instructions[i]).desc).size();
break;
case -1:

View File

@ -1,4 +1,4 @@
package com.alibaba.testable.core.tool;
package com.alibaba.testable.core.matcher;
import com.alibaba.testable.core.function.MatchFunction;

View File

@ -1,4 +1,4 @@
package com.alibaba.testable.core.tool;
package com.alibaba.testable.core.matcher;
import com.alibaba.testable.core.error.VerifyFailedError;
import com.alibaba.testable.core.model.Verification;

View File

@ -1,5 +1,6 @@
package com.alibaba.testable.core.tool;
import com.alibaba.testable.core.matcher.InvokeVerifier;
import com.alibaba.testable.core.util.InvokeRecordUtil;
import com.alibaba.testable.core.util.TestableUtil;