Examples of FixedAnswerEvaluator


Examples of org.eclipse.dltk.ti.goals.FixedAnswerEvaluator

    if (expressionClass == VariableReference.class) {
      return new VariableReferenceEvaluator(exprGoal);
    }
    if (expressionClass == BackTickExpression.class
        || expressionClass == Quote.class) {
      return new FixedAnswerEvaluator(exprGoal, new SimpleType(
          SimpleType.TYPE_STRING));
    }
    if (expressionClass == CloneExpression.class) {
      return new CloneEvaluator(exprGoal);
    }
    if (expressionClass == InstanceOfExpression.class) {
      return new FixedAnswerEvaluator(exprGoal, new SimpleType(
          SimpleType.TYPE_BOOLEAN));
    }
    if (expressionClass == ConditionalExpression.class) {
      return new ConditionalExpressionEvaluator(exprGoal);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.