Import directives migrated from ASM 3.3 to 4.0 with renamed packages

This commit is contained in:
Andrey Breslav
2012-07-24 22:26:40 +04:00
parent 839c39c70d
commit 5f3643804c
66 changed files with 167 additions and 169 deletions
@@ -35,7 +35,7 @@ import org.jetbrains.jet.lang.psi.JetPsiUtil;
import org.jetbrains.jet.lang.resolve.AnalyzingUtils;
import org.jetbrains.jet.lang.resolve.java.AnalyzerFacadeForJVM;
import org.jetbrains.jet.parsing.JetParsingTest;
import org.objectweb.asm.Type;
import org.jetbrains.asm4.Type;
import java.io.File;
import java.io.IOException;
@@ -163,7 +163,7 @@ public abstract class CodegenTestCase extends UsefulTestCase {
}
}
private Constructor getConstructor(@NotNull Class<?> clazz, org.objectweb.asm.commons.Method method) {
private Constructor getConstructor(@NotNull Class<?> clazz, org.jetbrains.asm4.commons.Method method) {
if (!method.getName().equals("<init>")) {
throw new IllegalArgumentException("not constructor: " + method);
}