Uses of Interface
org.openjdk.nashorn.api.tree.PropertyTree
Packages that use PropertyTree
Package
Description
Nashorn parser API provides interfaces to represent ECMAScript source code
as abstract syntax trees (AST) and Parser to parse ECMAScript source scripts.
-
Uses of PropertyTree in org.openjdk.nashorn.api.tree
Methods in org.openjdk.nashorn.api.tree that return PropertyTreeModifier and TypeMethodDescriptionClassDeclarationTree.getConstructor()
Get the constructor method definition.ClassExpressionTree.getConstructor()
Get the constructor method definition.Methods in org.openjdk.nashorn.api.tree that return types with arguments of type PropertyTreeModifier and TypeMethodDescriptionList
<? extends PropertyTree> ClassDeclarationTree.getClassElements()
Get other property definitions except for the constructor.List
<? extends PropertyTree> ClassExpressionTree.getClassElements()
Get other property definitions except for the constructor.List
<? extends PropertyTree> ObjectLiteralTree.getProperties()
Returns the list of properties of this object literal.Methods in org.openjdk.nashorn.api.tree with parameters of type PropertyTreeModifier and TypeMethodDescriptionSimpleTreeVisitorES5_1.visitProperty
(PropertyTree node, P r) TreeVisitor.visitProperty
(PropertyTree node, P p) Visit a property of an object literal expression tree.