Java Source Code AST

From GM-RKB
Revision as of 00:44, 22 February 2021 by Gmelli (talk | contribs) (Created page with "A Java Source Code AST is a source code AST for Java code. * <B>See:</B> Python Source Code AST, Scala Source Code AST. ---- ---- == References == === *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A Java Source Code AST is a source code AST for Java code.



References

=

  • https://www.vogella.com/tutorials/EclipseJDT/article.html#abstract-syntax-tree-ast
    • QUOTE: ... This tutorial ... also explains the Abstract Syntax Tree (AST) and the Java model in Eclipse. ...

      The AST is a detailed tree representation of the Java source code. The AST defines an API to modify, create, read and delete source code. The main package for the AST is the org.eclipse.jdt.core.dom package and is located in the org.eclipse.jdt.core plug-in. Each Java source element is represented as a subclass of the ASTNode class. Each specific AST node provides specific information about the object it represents.

...