src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/ExpressionTree.java
changeset 50878 fb7800b66c92
parent 47216 71c04702a3d5
equal deleted inserted replaced
50877:700fffd3c871 50878:fb7800b66c92
    27 
    27 
    28 /**
    28 /**
    29  * A tree node used as the base class for the different types of
    29  * A tree node used as the base class for the different types of
    30  * expressions.
    30  * expressions.
    31  *
    31  *
       
    32  * @deprecated Nashorn JavaScript script engine and APIs, and the jjs tool
       
    33  * are deprecated with the intent to remove them in a future release.
       
    34  *
    32  * @since 9
    35  * @since 9
    33  */
    36  */
       
    37 @Deprecated(since="11", forRemoval=true)
    34 public interface ExpressionTree extends Tree {}
    38 public interface ExpressionTree extends Tree {}