spoon.reflect.code.CtSwitch Java Examples
The following examples show how to use
spoon.reflect.code.CtSwitch.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractCodeAnalyzer.java From coming with MIT License | 6 votes |
public CtElement retrieveElementToStudy(CtElement element) { if (element instanceof CtIf) { return (((CtIf) element).getCondition()); } else if (element instanceof CtWhile) { return (((CtWhile) element).getLoopingExpression()); } else if (element instanceof CtFor) { return (((CtFor) element).getExpression()); } else if (element instanceof CtDo) { return (((CtDo) element).getLoopingExpression()); } else if (element instanceof CtForEach) { return (((CtForEach) element).getExpression()); } else if (element instanceof CtSwitch) { return (((CtSwitch) element).getSelector()); } else return (element); }
Example #2
Source File: CodeElementInfo.java From coming with MIT License | 6 votes |
private CtElement retrieveElementToStudy(CtElement element) { if (element instanceof CtIf) { return (((CtIf) element).getCondition()); } else if (element instanceof CtWhile) { return (((CtWhile) element).getLoopingExpression()); } else if (element instanceof CtFor) { return (((CtFor) element).getExpression()); } else if (element instanceof CtDo) { return (((CtDo) element).getLoopingExpression()); } else if (element instanceof CtForEach) { return (((CtForEach) element).getExpression()); } else if (element instanceof CtSwitch) { return (((CtSwitch) element).getSelector()); } else return (element); }
Example #3
Source File: TransformStrategy.java From astor with GNU General Public License v2.0 | 5 votes |
@SuppressWarnings({ "unchecked", "rawtypes" }) public List<String> transform () { CtStatement targetStmt = (CtStatement) this.modificationPoint.getCodeElement(); if (targetStmt instanceof CtInvocation) this.visitCtInvocation((CtInvocation) targetStmt); else if (targetStmt instanceof CtConstructorCall) this.visitCtConstructorCall((CtConstructorCall) targetStmt); else if (targetStmt instanceof CtIf) this.visitCtIf ((CtIf)targetStmt); else if (targetStmt instanceof CtReturn) this.visitCtReturn((CtReturn) targetStmt); else if (targetStmt instanceof CtSwitch) this.visitCtSwitch((CtSwitch) targetStmt); else if (targetStmt instanceof CtCase) this.visitCtCase((CtCase) targetStmt); else if (targetStmt instanceof CtAssignment) this.visitCtAssignment((CtAssignment) targetStmt); else if (targetStmt instanceof CtAssert) this.visitCtAssert((CtAssert) targetStmt); else if (targetStmt instanceof CtFor) this.visitCtFor((CtFor) targetStmt); else if (targetStmt instanceof CtForEach) this.visitCtForEach((CtForEach) targetStmt); else if (targetStmt instanceof CtWhile) this.visitCtWhile((CtWhile) targetStmt); else if (targetStmt instanceof CtUnaryOperator) this.visitCtUnaryOperator((CtUnaryOperator) targetStmt); else if (targetStmt instanceof CtSynchronized) this.visitCtSynchronized((CtSynchronized) targetStmt); return list; }
Example #4
Source File: TransformStrategy.java From astor with GNU General Public License v2.0 | 5 votes |
@SuppressWarnings({ "rawtypes", "unchecked" }) @Override public <S> void visitCtSwitch(CtSwitch<S> switchStatement) { super.visitCtSwitch(switchStatement); CtExpression exper=switchStatement.getSelector(); if (candidates.containsKey(exper)) { switchStatement.setSelector(candidates.get(exper)); saveSketchAndSynthesize(); switchStatement.setSelector(exper); resoreDiskFile(); } }
Example #5
Source File: SpoonLoopLibrary.java From nopol with GNU General Public License v2.0 | 4 votes |
public static boolean isBreakingFrom(CtLoop loop, CtBreak breakStatement) { if (breakStatement.getParent(CtLoop.class) == loop) { return breakStatement.getParent(CtSwitch.class) == loop.getParent(CtSwitch.class); } return false; }
Example #6
Source File: BinaryOperatorAnalyzer.java From coming with MIT License | 4 votes |
private void analyzeBinaryOperatorCompareInCondition (CtElement wholeoriginal, CtBinaryOperator operatorunderstudy, int operatorindex, Cntx<Object> context) { boolean whethercompareincondition = false; if(wholeoriginal instanceof CtIf || wholeoriginal instanceof CtWhile || wholeoriginal instanceof CtFor || wholeoriginal instanceof CtDo || wholeoriginal instanceof CtForEach || wholeoriginal instanceof CtSwitch) { BinaryOperatorKind operatorkind = operatorunderstudy.getKind(); if (compareOperator.contains(operatorkind)) whethercompareincondition = true; } writeGroupedInfo(context, Integer.toString(operatorindex)+"_"+operatorunderstudy, CodeFeatures.O4_COMPARE_IN_CONDITION, whethercompareincondition, "FEATURES_BINARYOPERATOR"); }