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

Examples of org.eclipse.php.internal.core.compiler.ast.nodes.Scalar.end()


  public boolean visit(ReflectionArrayVariableReference s) throws Exception {
    if (s.getExpression() instanceof Scalar) {
      Scalar name = (Scalar) s.getExpression();
      if (name.getScalarType() == Scalar.TYPE_STRING) {
        String dolarName = DOLLAR + name.getValue();
        check(dolarName, name.start(), name.end());
      }
    }
    operations.push(Operation.USE);

    return super.visit(s);
View Full Code Here


  public boolean visit(ReflectionVariableReference s) throws Exception {
    if (s.getExpression() instanceof Scalar) {
      Scalar name = (Scalar) s.getExpression();
      if (name.getScalarType() == Scalar.TYPE_STRING) {
        String dolarName = DOLLAR + name.getValue();
        check(dolarName, name.start(), name.end());
      }
    }
    operations.push(Operation.USE);

    return super.visit(s);
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.