Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Providing new DOM AST Nodes

Revision as of 06:09, 26 January 2009 by Spektom.gmail.com (Talk | contribs) (New page: Here is a checklist for adding a new DOM AST node: * Add new AST node class to the ''org.eclipse.php.internal.core.ast.nodes'' package. * Add new AST node type to the ''org.eclipse.php.i...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Here is a checklist for adding a new DOM AST node:

  • Add new AST node class to the org.eclipse.php.internal.core.ast.nodes package.
  • Add new AST node type to the org.eclipse.php.internal.core.ast.nodes.ASTNode class; modify org.eclipse.php.internal.core.ast.nodes.ASTNode.nodeClassForType(int) method as well.
  • Add new match method to the org.eclipse.php.internal.core.ast.match.PHPASTMatcher class.
  • Add Unit tests to the org.eclipse.php.test.headless.core.ast package.

Back to the top