Package org.eclipse.php.internal.core.typeinference.goals

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


  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

Related Classes of org.eclipse.php.internal.core.typeinference.goals.IteratorTypeGoal

Copyright © 2018 www.massapicom. 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.