< prev index next >

src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/SpreadTree.java

Print this page

        

*** 25,35 **** --- 25,39 ---- package jdk.nashorn.api.tree; /** * A tree node for spread operator in array elements, function call arguments. + * + * @deprecated Nashorn JavaScript script engine and APIs, and the jjs tool + * are deprecated with the intent to remove them in a future release. */ + @Deprecated(since="11", forRemoval=true) public interface SpreadTree extends ExpressionTree { /** * Returns the expression that is being spread. * * @return The expression that is being spread.
< prev index next >