Package org.eclipse.php.internal.core.compiler.ast.nodes

Examples of org.eclipse.php.internal.core.compiler.ast.nodes.PrefixExpression


    super(goal);
  }

  public IGoal[] init() {
    ExpressionTypeGoal typedGoal = (ExpressionTypeGoal) goal;
    PrefixExpression prefixExpression = (PrefixExpression) typedGoal
        .getExpression();

    // XXX: actually, we have to check the contents of the variable here,
    // since for example typeof(++"abc")=string, but typeof(++"123")=integer
    // ...
    return new IGoal[] { new ExpressionTypeGoal(goal.getContext(),
        prefixExpression.getVariable()) };
  }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.compiler.ast.nodes.PrefixExpression

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.