Examples of IteratorTypeGoal


Examples of org.eclipse.php.internal.core.typeinference.goals.IteratorTypeGoal

    super(goal);
  }

  public IGoal[] init() {
    ForeachStatementGoal typedGoal = (ForeachStatementGoal) goal;
    return new IGoal[] { new IteratorTypeGoal(goal.getContext(),
        typedGoal.getExpression()) };
  }
View Full Code Here

Examples of org.eclipse.php.internal.core.typeinference.goals.IteratorTypeGoal

  public IteratorTypeGoalEvaluator(IGoal goal) {
    super(goal);
  }

  public IGoal[] init() {
    IteratorTypeGoal typedGoal = (IteratorTypeGoal) goal;
    return new IGoal[] { new ExpressionTypeGoal(goal.getContext(),
        typedGoal.getExpression()) };
  }
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.