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

Examples of org.eclipse.php.internal.core.ast.nodes.FunctionName


    initialize(str);

    List<FunctionInvocation> invocations = getAllOfType(program,
        FunctionInvocation.class);
    Assert.assertTrue("Unexpected list size.", invocations.size() == 1);
    FunctionName functionName = invocations.get(0).getFunctionName();
    functionName.setName(ast.newIdentifier("boobo"));
    rewrite();
    checkResult("<?php boobo(); ?>");
  }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.ast.nodes.FunctionName

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.