Package org.eclipse.php.internal.core.typeinference.evaluators.phpdoc

Examples of org.eclipse.php.internal.core.typeinference.evaluators.phpdoc.PHPDocClassVariableEvaluator


    }
    if (goalClass == ClassVariableDeclarationGoal.class) {
      return new ClassVariableDeclarationEvaluator(goal);
    }
    if (goalClass == PHPDocClassVariableGoal.class) {
      return new PHPDocClassVariableEvaluator(goal);
    }
    if (goalClass == ConstantDeclarationGoal.class) {
      return new ConstantDeclarationEvaluator(goal);
    }
    if (goalClass == ForeachStatementGoal.class) {
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.typeinference.evaluators.phpdoc.PHPDocClassVariableEvaluator

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.