public void simpleSubjectsSimpleWithConditionals() throws BadBytecode {
System.out.println("simpleSubjectsSimpleWithConditionals");
CtClass clazz = getCtClass("test.subjects.SimpleSubjects");
CtMethod method = getMethod(clazz, "simpleWithConditionals");
StackAnalyzer analyzer = new StackAnalyzer(method);
Frames frames = analyzer.analyze();
for(Frame frame : frames) {
if(frame.decodedOp instanceof DecodedMethodInvocationOp) {
DecodedMethodInvocationOp dmio = (DecodedMethodInvocationOp) frame.decodedOp;
if(dmio.getName().equals("classic")) {
String[] names = DecodedMethodInvocationOp.resolveParametersNames(frame, false);